On Mon, Sep 24, 2001 at 11:29:29AM -0700, Osburn, Jim (jios) wrote:
> C:/home/jios/darwiz/nedit.h:87 Warning: no matching class member found for
> DARNumberEdit::GetEnglishText
> Possible candidates:
> void GetEnglishText(CString &str)
>
> what do i need to put in the header and the implementation file?
Nothing special. These kind of warnings are typically the result of
a parsing problem within doxygen. There are many possible causes. Some
typical ones:
1) the declaration and definition of arguments do not match syntactically
(e.g. both are integers but one is a typedef or macro).
2) doxygen is confused by a function macro in the class (typical for
boiler-plate code in MFC, ATL and the alike).
If you think doxygen should have been able to find a match please send me a
small code snipet containing the problem.
Regards,
Dimitri
|