Chameleon

Chameleon Svn Source Tree

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

Source at commit 1406 created 12 years 10 months ago.
By meklort, Revert drivers.c so that kexts are only loaded when OSBundleRequired is set and that value is not safe mode. Added some comments about it too.
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: 1406