mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
asynchronous RPC, RAS and RACW. Subversion-branch: /importfromcvs/trunk Subversion-revision: 46751
12 lines
198 B
Ada
12 lines
198 B
Ada
package Types is
|
|
|
|
pragma Pure;
|
|
|
|
type Query is new Integer;
|
|
No_Query : constant Query := Query'First;
|
|
|
|
type Reply is new Integer;
|
|
No_Reply : constant Reply := Reply'First;
|
|
|
|
end Types;
|