diff options
Diffstat (limited to 'backend/Object.h')
-rw-r--r-- | backend/Object.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/backend/Object.h b/backend/Object.h index 07b7b74..0cebd64 100644 --- a/backend/Object.h +++ b/backend/Object.h @@ -13,8 +13,6 @@ public: virtual const String & get_displayname() const; void set_description(const String & description); const String & get_description() const; - void set_hidden(bool hidden); - bool get_hidden(); protected: friend class ObjectFactory; @@ -22,8 +20,5 @@ protected: public: virtual ~Object() = default; -protected: - bool hidden = false; - }; |