mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
* Add initial DSA documentation. [Imported from Perforce change 10409 at 2006-12-01 22:55:23] Subversion-branch: /trunk/polyorb Subversion-revision: 37868
17 lines
405 B
INI
17 lines
405 B
INI
configuration Echo is
|
|
|
|
-- We declare a server partition that executes the server package ...
|
|
|
|
Server_Partition : partition := (Server);
|
|
|
|
-- ... and a client partition that executes the client main procedure
|
|
|
|
Client_Partition : partition;
|
|
procedure Client is in Client_Partition;
|
|
|
|
-- The partitions' executables should be put in ./bin
|
|
|
|
for Partition'Directory use "bin";
|
|
|
|
end Echo;
|