Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[photran] Outline and Interface

Dear developers and users of Photran,
I have a problem with the Outline when using "INTERFACE". In the following example in the outline I get the module "one", with inside the function "interf", and then I can expand "interf" getting "interf1", with inside "interf2" and then inside the next module "two". Actually at first I thought Module "two" was not present in the Outline, in reality it gets "eaten" by the interface in the module "one".

Is there a way of fixing this?

Thank you very much.
Gianluca

MODULE one
 INTERFACE interf
        MODULE PROCEDURE interf1, interf2
 END INTERFACE
CONTAINS
...
END MODULE one

MODULE two
...
END MODULE two




Back to the top