Files
PolyORB/examples/dsa/echo/echo.cfg
Thomas Quinot 85e5bb314f Initial implementation of IB23-017 (embedded name server for
PolyORB/DSA).

Subversion-branch: /trunk/polyorb
Subversion-revision: 153820
2009-12-04 18:22:00 +00:00

18 lines
439 B
INI

configuration Echo is
pragma Name_Server (Embedded);
-- 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;