Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/func.h

Source at commit 1322 created 12 years 8 months ago.
By meklort, Add doxygen to utils folder
1class Test
2{
3 public:
4 const char *member(char,int) throw(std::out_of_range);
5};
6
7const char *Test::member(char c,int n) throw(std::out_of_range) {}
8
9/*! \class Test
10 * \brief Test class.
11 *
12 * Details about Test.
13 */
14
15/*! \fn const char *Test::member(char c,int n)
16 * \brief A member function.
17 * \param c a character.
18 * \param n an integer.
19 * \exception std::out_of_range parameter is out of range.
20 * \return a character pointer.
21 */
22

Archive Download this file

Revision: 1322