IToiApplication.idl
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef ITOIAPPLICATION_IDL
00016 #define ITOIAPPLICATION_IDL
00017
00018 #include "TToiInvalidArgumentException.idl"
00019 #include "TToiUnhandledValueException.idl"
00020 #include "IToiApplicationService.idl"
00021
00032
00033
00034 interface IToiApplication {
00035
00047 oneway void Ping();
00048
00065 oneway void ChangeState(in IToiApplicationService::TToiApplicationState newState);
00066
00087 oneway void LoadUri(in string uri,
00088 in string mimeType);
00089
00098 oneway void ExecuteCommand(in string command);
00099
00100 };
00101
00102 #endif