summaryrefslogtreecommitdiff
path: root/include/classbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/classbase.h')
-rw-r--r--include/classbase.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/classbase.h b/include/classbase.h
index e399efe..c2a9022 100644
--- a/include/classbase.h
+++ b/include/classbase.h
@@ -259,7 +259,7 @@ protected:
* Add an interface
* @param interface Interface object
*/
-// void implements(const ClassBase &interface) { _interfaces.push_back(&interface); }
+ void implements(const ClassBase &interface);
/**
* Set the base class
@@ -268,7 +268,6 @@ protected:
// void extends(const std::string &name) { _base = name; }
private:
-
/**
* Pointer to the actual implementation
* @var std::shared_ptr<ClassImpl>