IToiHelloWorldService.idl

00001 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
00002  *---------------------------------------------------------------------------
00003  *
00004  * interface/public/IToiHelloWorldService.idl
00005  *
00006  * Copyright (c) 2006 Motorola Inc. All Rights Reserved.
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