summaryrefslogtreecommitdiff
path: root/tools/m4/class_interface.m4
diff options
context:
space:
mode:
authorMark Vender <markv743@yahoo.co.uk>2012-03-30 23:21:07 +0000
committerMurray Cumming <murrayc@murrayc.com>2012-04-03 11:18:53 +0200
commit5daec6c18526bcd257df533fabe2a8ed7b0e16a8 (patch)
tree0a7293bb9e908005521e0b8ac48221d6706afb2d /tools/m4/class_interface.m4
parent08c585e5f327bde1ddc25002fc4f97db03600f73 (diff)
downloadglibmm-5daec6c18526bcd257df533fabe2a8ed7b0e16a8.tar.gz
gmmproc: Generate the documentation of default constructors of interface classes.
Bug #673213
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.