[Doxygen-users] Possible bug with enums?
Brought to you by:
dimitri
|
From: Proskuriakov, I. <Igo...@gs...> - 2001-12-04 15:43:00
|
Hi,
I am using doxygen 1.2.12 for Windows. I have the problem with enums, the
problem is as following:
Simplified example is:
example.hpp
enum {
active,
inactive
} State;
class Test
{
public:
Test();
State Member;
}
example.cpp
#include "example.hpp"
Test::Test():
member(inactive)
{};
configuration file is:
PROJECT_NAME = "Example Command"
OUTPUT_DIRECTORY = .
GENERATE_LATEX = NO
GENERATE_MAN = NO
GENERATE_RTF = NO
CASE_SENSE_NAMES = YES
INPUT = example.cpp example.hpp
EXTRACT_ALL = YES
SOURCE_BROWSER = YES
When producing documentation for Test::Test(), in the list of references,
doxygen puts a wrong link to inactive
href="namespace_3globalScope_4.html#a3a2". The file
namespace_3globalScope_4.html does not exist at all.
regards,
Igor Proskuriakov
|