8 Feb 10:17
documented function `' was not declared or defined bug?
<mermar <at> centrum.cz>
2012-02-08 09:17:18 GMT
2012-02-08 09:17:18 GMT
Hi,
I'd like to ask if following doxygen behaviour is a bug?
Let's have two files myclass.h and myclass.cc.
--------------------
#ifndef MYCLASS_INCLUDED
#define MYCLASS_INCLUDED ///< Multiple inclusion protection.
/**
* @brief Documentation of class.
*/
class MyClass
{
public:
/**
* @brief Documentation of method.
* @param myParameter Documentation of parameter.
*/
void myMethod(unsigned int);
private:
unsigned myProperty; ///< Documentation of property.
};
#endif // MYCLASS_INCLUDED
--------------------
#include "myclass.h"
void MyClass::myMethod(unsigned myParameter)
(Continue reading)
RSS Feed