[Doxygen-develop] \interface tag - possible bug?
Brought to you by:
dimitri
From: James H. <jh...@ga...> - 2005-01-20 20:51:20
|
Hi, The \interface tag, which is documented in the Doxygen manual, appears not to be recognised by Doxygen 1.4.1: test_prog.cc: /// \interface Int class Int { virtual ~Int() {} virtual void Method() = 0; }; /// \class Imp class Imp : public Int { void Method() {} }; Running Doxygen 1.4.1 (on Linux) on test_prog.cc produces the warning test_prog.cc:1: Warning: Found unknown command `\interface' and Int and Imp are both documented as regular classes. Is this a bug? Regards, James. |