5. Embedded QUEL for Ada
:
Ada Variables and Data Types
:
Variable and Type Declarations
:
Private Types
Share this page
Private Types
The syntax for a private type is:
type
identifier
is
[
limited
]
private;
Syntax Note:
This type declaration is treated as an incomplete type declaration. You must fully define a private type before using any object declared with it.