diff options
author | (no author) <(no author)@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-08-08 20:01:03 (GMT) |
---|---|---|
committer | (no author) <(no author)@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-08-08 20:01:03 (GMT) |
commit | 001e27ddbb1bfaa351b5f268b22418fb0557d6c2 (patch) | |
tree | a390a2400721fd1ed137738bd2679ab33ed0306f /examples/group.cpp | |
parent | 0559d5795f6e2adc993577a4dd55b5370d31677c (diff) | |
download | Doxygen-Release_1_4_4_20050804.zip Doxygen-Release_1_4_4_20050804.tar.gz Doxygen-Release_1_4_4_20050804.tar.bz2 |
This commit was manufactured by cvs2svn to create tagRelease_1_4_4_20050804
'Release_1_4_4_20050804'.
Diffstat (limited to 'examples/group.cpp')
-rw-r--r-- | examples/group.cpp | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/examples/group.cpp b/examples/group.cpp deleted file mode 100644 index b120b90..0000000 --- a/examples/group.cpp +++ /dev/null @@ -1,88 +0,0 @@ -/** @defgroup group1 The First Group - * This is the first group - * @{ - */ - -/** @brief class C1 in group 1 */ -class C1 {}; - -/** @brief class C2 in group 1 */ -class C2 {}; - -/** function in group 1 */ -void func() {} - -/** @} */ // end of group1 - -/** - * @defgroup group2 The Second Group - * This is the second group - */ - -/** @defgroup group3 The Third Group - * This is the third group - */ - -/** @defgroup group4 The Fourth Group - * @ingroup group3 - * Group 4 is a subgroup of group 3 - */ - -/** - * @ingroup group2 - * @brief class C3 in group 2 - */ -class C3 {}; - -/** @ingroup group2 - * @brief class C4 in group 2 - */ -class C4 {}; - -/** @ingroup group3 - * @brief class C5 in @link group3 the third group@endlink. - */ -class C5 {}; - -/** @ingroup group1 group2 group3 group4 - * namespace N1 is in four groups - * @sa @link group1 The first group@endlink, group2, group3, group4 - * - * Also see @ref mypage2 - */ -namespace N1 {}; - -/** @file - * @ingroup group3 - * @brief this file in group 3 - */ - -/** @defgroup group5 The Fifth Group - * This is the fifth group - * @{ - */ - -/** @page mypage1 This is a section in group 5 - * Text of the first section - */ - -/** @page mypage2 This is another section in group 5 - * Text of the second section - */ - -/** @} */ // end of group5 - -/** @addtogroup group1 - * - * More documentation for the first group. - * @{ - */ - -/** another function in group 1 */ -void func2() {} - -/** yet another function in group 1 */ -void func3() {} - -/** @} */ // end of group1 - |