person_type Derived Type

type, public :: person_type

Person type to store name and contact details.


Inherited by

type~~person_type~~InheritedByGraph type~person_type person_type type~mail_type mail_type type~mail_type->type~person_type from, to, cc, bcc

Components

Type Visibility Attributes Name Initial
character(len=PERSON_NAME_LEN), public :: name = ' '

Person name.

character(len=PERSON_MAIL_LEN), public :: mail = ' '

Person e-mail address.

character(len=PERSON_PHONE_LEN), public :: phone = ' '

Person phone number.