summaryrefslogtreecommitdiffstats
path: root/trunk/examples/memgrp.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-03-22 19:19:06 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-03-22 19:19:06 (GMT)
commite620712c9dd41c56bbd56d16a5a3469b96fafbf0 (patch)
tree2a7451abfd771d43ea2b3ac2443d94c3eb5cfee7 /trunk/examples/memgrp.cpp
parent8f455b66da9db238655242d1213c05affac412d9 (diff)
downloadDoxygen-Release_1_8_0.zip
Doxygen-Release_1_8_0.tar.gz
Doxygen-Release_1_8_0.tar.bz2
Created accidentallyRelease_1_8_0
Diffstat (limited to 'trunk/examples/memgrp.cpp')
-rw-r--r--trunk/examples/memgrp.cpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/trunk/examples/memgrp.cpp b/trunk/examples/memgrp.cpp
deleted file mode 100644
index 77f03a4..0000000
--- a/trunk/examples/memgrp.cpp
+++ /dev/null
@@ -1,41 +0,0 @@
-/** A class. Details */
-class Test
-{
- public:
- //@{
- /** Same documentation for both members. Details */
- void func1InGroup1();
- void func2InGroup1();
- //@}
-
- /** Function without group. Details. */
- void ungroupedFunction();
- void func1InGroup2();
- protected:
- void func2InGroup2();
-};
-
-void Test::func1InGroup1() {}
-void Test::func2InGroup1() {}
-
-/** @name Group2
- * Description of group 2.
- */
-///@{
-/** Function 2 in group 2. Details. */
-void Test::func2InGroup2() {}
-/** Function 1 in group 2. Details. */
-void Test::func1InGroup2() {}
-///@}
-
-/*! \file
- * docs for this file
- */
-
-//!@{
-//! one description for all members of this group
-//! (because DISTRIBUTE_GROUP_DOC is YES in the config file)
-#define A 1
-#define B 2
-void glob_func();
-//!@}