/
niceSOFT
/
doxygen
Обзор
Документация
Войти
/
niceSOFT
/
doxygen
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testing/044_section.h
27 строк
439 B
albert-github
Fix for tests failing XHTML validation
17 июл 2023, 11:48
17 июл 2023, 11:48
50163f8
Код
Авторство
О чём код?
// objective: test the \(public|protected|private)section commands // check: struct_s.xml /** A struct */ struct S { /** \publicsection */ /** public field */ int pub1; /** another public field */ int pub2; /** \protectedsection */ /** protected field */ int pro1; /** another protected field */ int pro2; /** \privatesection */ /** private field */ int pri1; /** another private field */ int pri2; };