mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
14 lines
225 B
Ada
14 lines
225 B
Ada
package Types is
|
|
|
|
pragma Pure;
|
|
|
|
type Node_Type is abstract tagged limited private;
|
|
|
|
procedure Print (N : access Node_Type) is abstract;
|
|
|
|
private
|
|
|
|
type Node_Type is abstract tagged limited null record;
|
|
|
|
end Types;
|