/
niceSOFT
/
doxygen
Обзор
Документация
Войти
/
niceSOFT
/
doxygen
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/overload.cpp
24 строки
539 B
albert-github
Add examples to LaTeX / PDF doxygen manual
05 сен 2015, 19:42
05 сен 2015, 19:42
5e11f88
Код
Авторство
О чём код?
class Overload_Test { public: void drawRect(int,int,int,int); void drawRect(const Rect &r); }; void Overload_Test::drawRect(int x,int y,int w,int h) {} void Overload_Test::drawRect(const Rect &r) {} /*! \class Overload_Test * \brief A short description. * * More text. */ /*! \fn void Overload_Test::drawRect(int x,int y,int w,int h) * This command draws a rectangle with a left upper corner at ( \a x , \a y ), * width \a w and height \a h. */ /*! * \overload void Overload_Test::drawRect(const Rect &r) */