When I use \code{.cpp} inside a \page, it strips out all of the comments that 
look like Doxygen comments.  For instance, this in a \page \code{.cpp} block:

   class XYZ {
   public:

        DVLMessageFormatter() {}
           /**
            * @brief This function is called when a DVL restart has been 
triggered.  The
            * formatter should then send all necessary messages to DVL to
            * completely refresh its cache.
            */
        virtual void HandleDVLRestart() = 0;

   }

shows up in the Doxygen output as:
   class XYZ {
   public:

        DVLMessageFormatter() {}
        virtual void HandleDVLRestart() = 0;

   }

I -want- those comments to remain in the Doxygen output.

How can I do that?  I've tried:
-       escaping (backslash) the "\*"    - nogo
-       escaping (backslash) the "@brief"  - nogo

Ideas??

        Mike



This email was sent to you by Thomson Reuters, the global news and information 
company. Any views expressed in this message are those of the individual 
sender, except where the sender specifically states them to be the views of 
Thomson Reuters.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to