diff options
Diffstat (limited to 'backend/Object.h')
-rw-r--r-- | backend/Object.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend/Object.h b/backend/Object.h index cb2c209..b98dc82 100644 --- a/backend/Object.h +++ b/backend/Object.h @@ -15,9 +15,10 @@ public: bool get_hidden(); protected: + friend class ObjectFactory; Object(const char * name = "", const char * description = ""); +public: virtual ~Object(); - friend class ObjectFactory; protected: bool hidden = false; |