Files
PolyORB/examples/dsa/echo/echo_standalone.cfg
Thomas Quinot 644abec39c Minor improvements to echo example.
Subversion-branch: /trunk/polyorb
Subversion-revision: 168732
2011-01-04 16:16:02 +00:00

19 lines
467 B
INI

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