overload.cpp
Go to the documentation of this file.
2 {
3  public:
4  void drawRect(int,int,int,int);
5  void drawRect(const Rect &r);
6 };
7 
8 void Overload_Test::drawRect(int x,int y,int w,int h) {}
9 void Overload_Test::drawRect(const Rect &r) {}
10 
11 /*! \class Overload_Test
12  * \brief A short description.
13  *
14  * More text.
15  */
16 
17 /*! \fn void Overload_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 Overload_Test::drawRect(const Rect &r)
24  */
25 
list x
Definition: train.py:276
A short description.
Definition: overload.cpp:1
void drawRect(int, int, int, int)
Definition: overload.cpp:8