I have lines in header files that are like:
public:
//! @name Constructor / Destructor
//@{
//! Constructor.
CP_AboutBox( CP_Application_Imp *inOwnerApp );
virtual ~CP_AboutBox() throw();
//@}
//! @name Instance
//@{
static CP_AboutBox *Instance();
//@}
//! @name Display
//@{
void Display( const CP_String& inDescription = CP_String("") );
//@}
//! @name Setters
//@{
What is all this @name Instance
and @name Display
?
is it Doxygen?