[Doxygen-users] Macros
Brought to you by:
dimitri
From: Stefan M. <me...@sk...> - 2001-08-27 12:23:32
|
Forwarded from developlist Stefan Maton ----------------------------- Programmer Resources Site http://www.sun-a-moon.org ----------------------------- > -----Message d'origine----- > De : dox...@li... > [mailto:dox...@li...]De la part de Stefa= n > Maton > Envoy=E9 : Montag, 27. August 2001 10:47 > =C0 : Doxygen mailing list > Objet : [Doxygen-develop] Macros > > > Hi, > > I have following class definition : > > > // ---------------------------------------------------------- > // Class definition. > class CRandomGenerator : public IRandomGenerator > { > > public: > [...snipped code...] > > // ------------------------ > // Seed setting. > > IWMETHODIMP(void)SetSeed( ulong _uSeed ); > IWMETHODIMP(ulong)GetSeed(); > > [...snipped code...] > }; > > IWMETHODIMP is defined within another header that is not > included in the randomgenerator header in this way : > > #define IWMETHODCALLTYPE __stdcall > #define IWMETHODIMP(type) type IWMETHODCALLTYPE > > Unfortunately, doxygen doesn't seem to be able to resolve following > comment : > > /*! \fn IWMETHODIMP(void) CRandomGenerator::SetSeed( ulong _uSeed ); > * \brief Set the seed of the random number generator. > * \param _uSeed The seed to use. > */ > > I also tried to put the comment just above the SetSeed function > declaration > in this way : > > /*! \fn IWMETHODIMP(void) SetSeed( ulong _uSeed ); > * \brief Set the seed of the random number generator. > * \param _uSeed The seed to use. > */ > > Which didn't work, too... > > The warning I get is : > D:/Projekte/IW/Src/baselib/Random/Random.h:38 Warning: member SetSeed o= f > class C > RandomGenerator cannot be found > > What can I do ? > > Kind regards, > Stefan Maton > ----------------------------- > Programmer Resources Site > http://www.sun-a-moon.org > ----------------------------- > > > _______________________________________________ > Doxygen-develop mailing list > Dox...@li... > http://lists.sourceforge.net/lists/listinfo/doxygen-develop > |