diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-06-04 17:46:13 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-06-04 17:46:13 (GMT) |
commit | d8197176c24ca1a41af722063bfb6ceeb050442c (patch) | |
tree | 85b63b795f663bb71c26c647948a085a3849177d /examples | |
parent | 3e33c5094f5127c719418656fff8e47d2e19405e (diff) | |
download | Doxygen-d8197176c24ca1a41af722063bfb6ceeb050442c.zip Doxygen-d8197176c24ca1a41af722063bfb6ceeb050442c.tar.gz Doxygen-d8197176c24ca1a41af722063bfb6ceeb050442c.tar.bz2 |
Release-1.1.4
Diffstat (limited to 'examples')
-rw-r--r-- | examples/memgrp.cpp | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/examples/memgrp.cpp b/examples/memgrp.cpp index 5501d71..a365e74 100644 --- a/examples/memgrp.cpp +++ b/examples/memgrp.cpp @@ -2,10 +2,8 @@ class Test { public: - /** @name Group1 - */ //@{ - /** Function 1 in group 1. Details. */ + /** Same documentation for both members. Details */ void func1InGroup1(); void func2InGroup1(); //@} @@ -30,3 +28,13 @@ void Test::func2InGroup2() {} void Test::func1InGroup2() {} //@} +/*! \file + * docs for this file + */ + +//@{ +//! one description for all members of this group +#define A 1 +#define B 2 +void glob_func(); +//@} |