summaryrefslogtreecommitdiff
path: root/tools/m4/class_interface.m4
diff options
context:
space:
mode:
Diffstat (limited to 'tools/m4/class_interface.m4')
-rw-r--r--tools/m4/class_interface.m49
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/m4/class_interface.m4 b/tools/m4/class_interface.m4
index 515a7a7b..ff158149 100644
--- a/tools/m4/class_interface.m4
+++ b/tools/m4/class_interface.m4
@@ -228,9 +228,14 @@ private:
__CPPNAME__`'(const __CPPNAME__&);
__CPPNAME__& operator=(const __CPPNAME__&);
+#endif /* DOXYGEN_SHOULD_SKIP_THIS */
protected:
- __CPPNAME__`'(); // you must derive from this class
-
+ /**
+ * This class must be inherited in order to be used
+ */
+ __CPPNAME__`'();
+
+#ifndef DOXYGEN_SHOULD_SKIP_THIS
/** Called by constructors of derived classes. Provide the result of
* the Class init() function to ensure that it is properly
* initialized.