Difference between revisions of "Doxygen"

From LIBISIS
Jump to navigation Jump to search
(No difference)

Revision as of 08:42, 27 March 2008

Doxygen now supports FORTRAN 90 it uses !> and !< for special comments and !> or !! for special comment continuation. For example

  !> This is documentation of the 
  !! subroutine test.
  !! @param A first argument
  !! @todo Handle special case
  subroutine test(A,B,C)
    implicit none
    Type(mytype), intent(in) :: A !< more doc    
    Type(other), intent(in) :: B
    Type(another), intent(out) :: C !< yet more