/
niceSOFT
/
doxygen
Обзор
Документация
Войти
/
niceSOFT
/
doxygen
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testing/046_related.cpp
28 строк
395 B
Dimitri van Heesch
Added regression test suite
19 июл 2013, 23:46
19 июл 2013, 23:46
5875da6
Код
Авторство
О чём код?
// objective: test the \related, \relatedalso, \see, and \sa commands // check: class_test.xml // check: 046__related_8cpp.xml /** @file */ /** A test class * @see Test::method() */ class Test { public: /** A method */ void method(); }; /*! * A function. * \related Test * \sa another() */ void function(); /*! * Another function * \relatedalso Test */ void another();