Files
PolyORB/docs/echo-impl-spec.ads
Thomas Quinot 12da980b39 Minor reformatting
Subversion-branch: /trunk/polyorb
Subversion-revision: 183110
2012-01-04 14:44:28 +00:00

15 lines
278 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 : CORBA.String) return CORBA.String;
end Echo.Impl;