IToiHelloWorldService.idl
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef ITOIHELLOWORLDSERVICE_IDL
00012 #define ITOIHELLOWORLDSERVICE_IDL
00013
00014 #include "TToiInvalidArgumentException.idl"
00015
00033 interface IToiHelloWorldService
00034 {
00046 void SaySynchronousHello(in string subject, out string greeting)
00047 raises (TToiInvalidArgumentException);
00048
00060 void SayAsynchronousHello(in string subject, in string address)
00061 raises (TToiInvalidArgumentException);
00062 };
00063
00064 #endif