Files
PolyORB/docs/echo-impl-spec.ads
Thomas Quinot b266a2d97a Move documentation from doc/ to docs/, for consistency with other
products.

[Imported from Perforce change 9855 at 2006-12-01 22:19:43]

Subversion-branch: /trunk/polyorb
Subversion-revision: 37320
2006-02-01 19:59:56 +00:00

16 lines
290 B
Ada

with CORBA;
with PortableServer;
package Echo.Impl is
type Object is new PortableServer.Servant_Base with null record;
type Object_Acc is access Object;
function EchoString
(Self : access Object;
Mesg : in CORBA.String)
return CORBA.String;
end Echo.Impl;