xtd 0.2.0
abstract_object.h
Go to the documentation of this file.
1 #pragma once
5 #include "object.h"
6 
8 namespace xtd {
25  class abstract_object : public xtd::object {
26  public:
28  ~abstract_object() override = 0;
30 
31  protected:
33 
36  abstract_object() = default;
38  };
39 
54  #define abstract_object_ \
55  : xtd::abstract_object
56 }
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
abstract_object()=default
Initializes a new instance of the xtd::abstract_object class.
Contains xtd::object class.
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes...
Definition: object.h:32
Represent an abstract class.
Definition: abstract_object.h:25