Я помещаю комментарий doxygen в мой файл.Когда я генерирую HTML-файлы (используя приложение doxygen), я вижу
MyClass Class Reference
#include <myclass.hpp>
, который я хочу отобразить как
Справочник по классам MyClass
#include <MyClass>
Я пробовал разные варианты, но не повезло.Я попытался \ file MyClass, но все еще показывает ту же (вышеупомянутую) строку.
Вот комментарий doxygen
/**
* \class MyClass
*
* \ingroup demo
*
* \brief Provide an example
*
* This class is meant as an example. It is not useful by itself
* rather its usefulness is only a function of how much it helps
* the reader. It is in a sense defined by the person who reads it
* and otherwise does not exist in any real form.
*
* \file MyClass
*
* Contact: abc@abc.com
*
* Created on: Wed Apr 13 18:39:37 2005
*
*/