Re: [Doxygen-users] Comment block AFTER declaration in Fortran

2015-03-13 Thread Fabian Nick
.. > > > > Just a thought... > > > > Best regards, > > Fabian. > > > > * From: Petr Parik (petr.pa...@seznam.cz) > > * To: Fabian Nick (fabian.n...@scai.fraunhofer.de) > > * Sent: 12.03.2015 at 22:00 +0100 > > * Subject: Re: [Doxygen-users] Comment

Re: [Doxygen-users] Comment block AFTER declaration in Fortran

2015-03-13 Thread Fabian Nick
ght... Best regards, Fabian. * From: Petr Parik (petr.pa...@seznam.cz) * To: Fabian Nick (fabian.n...@scai.fraunhofer.de) * Sent: 12.03.2015 at 22:00 +0100 * Subject: Re: [Doxygen-users] Comment block AFTER declaration in Fortran > Dear Albert, > > thanks. I tried many ways in Doxygen 1.8.9.

Re: [Doxygen-users] Comment block AFTER declaration in Fortran

2015-03-12 Thread Petr Parik
Dear Albert, thanks. I tried many ways in Doxygen 1.8.9.1 until I have found that the inside comment block works only if I put it AFTER any argument declarations (and use !>). SUBROUTINE FOO(BAR) IMPLICIT NONE INTEGER BAR !> description of FOO !> here it works! REAL A,

Re: [Doxygen-users] Comment block AFTER declaration in Fortran

2015-03-12 Thread Albert
Dear Petr, Currently there is no way to use the !< for the purpose you describe (interesting thought though). As far as I know a !> block will work (in most cases) provided it is not direct before an argument (as this will be seen as documentation for the argument). Albert On Thu, Mar 12, 2015 a

[Doxygen-users] Comment block AFTER declaration in Fortran

2015-03-12 Thread Petr Parik
Hi, how do I put the comment block after module/subroutine/function declaration in Fortran? I tried SUBROUTINE FOO !< description of FOO but it does not work. For arguments and variables the "after" comment block works fine. I simply need to hide the bulky comment blocks inside su