Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/overload.cpp

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 void drawRect(int,int,int,int);
5 void drawRect(const Rect &r);
6};
7
8void Test::drawRect(int x,int y,int w,int h) {}
9void Test::drawRect(const Rect &r) {}
10
11/*! \class Test
12 * \brief A short description.
13 *
14 * More text.
15 */
16
17/*! \fn void Test::drawRect(int x,int y,int w,int h)
18 * This command draws a rectangle with a left upper corner at ( \a x , \a y ),
19 * width \a w and height \a h.
20 */
21
22/*!
23 * \overload void Test::drawRect(const Rect &r)
24 */
25
26

Archive Download this file

Revision: 1406