Reference Guide  2.5.0
psyclone.f2pygen.TypeDeclGen Class Reference
Inheritance diagram for psyclone.f2pygen.TypeDeclGen:
Collaboration diagram for psyclone.f2pygen.TypeDeclGen:

Public Member Functions

def __init__ (self, parent, datatype="", entity_decls=None, intent="", pointer=False, dimension="", allocatable=False, save=False, target=False, is_class=False, private=False)
 
- Public Member Functions inherited from psyclone.f2pygen.BaseDeclGen
def names (self)
 
def root (self)
 
- Public Member Functions inherited from psyclone.f2pygen.BaseGen
def __init__ (self, parent, root)
 
def parent (self)
 
def children (self)
 
def add (self, new_object, position=None)
 
def previous_loop (self)
 
def last_declaration (self)
 
def start_parent_loop (self, debug=False)
 

Detailed Description

Generates a Fortran declaration for variables of a derived type.

:param parent: node to which to add this declaration as a child.
:type parent: :py:class:`psyclone.f2pygen.BaseGen`
:param str datatype: the type for this declaration.
:param list entity_decls: list of variable names to declare.
:param str intent: the INTENT attribute of this declaration.
:param bool pointer: whether or not this is a pointer declaration.
:param str dimension: the DIMENSION specifier (i.e. the xx in \
                      DIMENSION(xx)).
:param bool allocatable: whether this declaration is for an \
                         ALLOCATABLE quantity.
:param bool save: whether this declaration has the SAVE attribute.
:param bool target: whether this declaration has the TARGET attribute.
:param bool is_class: whether this is a class rather than type declaration.
:param bool private: whether or not this declaration has the PRIVATE \
                     attribute. (Defaults to False.)

Definition at line 1218 of file f2pygen.py.


The documentation for this class was generated from the following file: