Files
PolyORB/examples/dsa/echo/echo.cfg
Pablo Oliveira eba79fbdf9 * Add echo example for DSA personality.
* Add initial DSA documentation.

[Imported from Perforce change 10409 at 2006-12-01 22:55:23]

Subversion-branch: /trunk/polyorb
Subversion-revision: 37868
2006-09-29 17:53:00 +00:00

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;