Hi,
I have a module that defines a derived type and overloads assignment, addition, etc amongst other things. The module must be private, but I’d like to make public the derived type and overloaded operator.
How do I do this?
For instance:
module Vect2d_mod
private
public :: Vect2D
Type :: Vect2D
real :: X
real :: Y
End Type Vect2D
Interface Operator (+)
Module Procedure SumVect2D
End Interface
end module
As it is, if I import vect2d_mod, I can declare variable with type Vect2D, but I cannot use the overloaded addition, which I would very much want…