Hi,

I am writing a Fortran code that makes extensive use of Fortran 2003 features. 
Here is an toy-example of one of my module:

module matrix_module
    implicit none
    private

    type, public :: matrix
        private
        integer :: n_
    contains
        private
        procedure, public :: init
    end type matrix
contains
    subroutine init(this, n)
        class(matrix), intent(inout) :: this
        integer, intent(in) :: n

        this%n_ = n
    end subroutine init
end module matrix

When I run doxygen 1.8.1.2 on this code, in the matrix_module::matrix type 
reference, I get all the member functions/subroutines, but I don't get any 
information of their arguments. This information is only available through the 
matrix_module reference page.

Is there a way to get it on the matrix_module::matrix type reference?

Best regards,
François Fayard

------------------------------------------------------------------------------
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