Re: [Doxygen-users] Comments in VHDL Process

2013-01-28 Thread vikesh rambaran
Hi Thanx for the quick reply and work around The whitespace after the --! solves the problem Keep well Vicki On Mon, Jan 28, 2013 at 7:42 PM, mkk wrote: > It is a bug and should be fixed in the next update. > > > --! @brief Process 4to manage reception of nrzi bits > --! {w

Re: [Doxygen-users] Comments in VHDL Process

2013-01-28 Thread mkk
It is a bug and should be fixed in the next update. --! @brief Process 4to manage reception of nrzi bits --! {ws} --! Gets bits from the data recovery component and performs nrzidecoding. --! {ws} --! @param[in] p_DataClk Clock, used on rising edge a simple white

Re: [Doxygen-users] xml output: how to refer to an image?

2013-01-28 Thread Alfonso MHC
Hello, I have already reported this as an improvement, but in any case I would really appreciate any comment on how to overcome this issue. Best regards, Alfonso On 17 January 2013 15:24, Alfonso MHC wrote: > Hello again, > > Could anyone please give me some feedback on this issue? It would be

[Doxygen-users] vhdlflow command

2013-01-28 Thread vikesh rambaran
Hi Is it possible to configure the \vdhlflow command to only include conditional statements and associated comments instead of all the code as well. For the simple example below, the reset case includes the following two lines in the diagram s_t_MpxState <= t_MpxIdle; v_DataTransaction := '1';

[Doxygen-users] Comments in VHDL Process

2013-01-28 Thread vikesh rambaran
Hi Doxygen does not seem to generate html output correctly for vhdl processes with a 'single' parameter in the sensitivity list. I have tried version 1.8.3.1 and an earlier version. Using the attached example file, the following html output is incorrect: 1. Process section : The brief descriptio

[Doxygen-users] VHDL Process comments

2013-01-28 Thread vikesh rambaran
Hi Doxygen does not seem to generate html output correctly for vhdl processes with a 'single' parameter in the sensitivity list. I have tried version 1.8.3.1 and an earlier version. Using the attached example file, the following html output is incorrect: 1. Process section : The brief description

[Doxygen-users] Is it possible to hide a class without hidding its members in subclasses?

2013-01-28 Thread Piotrek Beling
I have a code (in C++, but for other languages solution of problem is probably similar): namespace details { struct C { /// Documentation for common method. void c(); }; }; /// Documentation for class A struct A: public details:C { /// Documentation for method a void a(); }; ///