00001 // 00002 // INFSmartFoxSysHandler.h 00003 // OkeyiPhoneClient 00004 // 00005 // Created by Cem Uzunlar | infosfer.com on 11/24/08. 00006 // Copyright 2008 Infosfer Game and Visualizaiton Technologies Ltd.. All rights reserved. 00007 // 00008 00009 #import <Foundation/Foundation.h> 00010 00011 #import "INFSmartFoxIMessageHandler.h" 00012 #import "INFSmartFoxSFSEvent.h" 00013 00014 @class INFSmartFoxiPhoneClient; 00015 00023 @interface INFSmartFoxSysHandler : NSObject <INFSmartFoxIMessageHandler> { 00024 00025 @private 00026 INFSmartFoxiPhoneClient *_sfs; 00027 NSMutableDictionary *_handlersTable; 00028 } 00029 00030 + (id)sysHandler:(INFSmartFoxiPhoneClient *)sfs; 00031 00032 - (id)initWithParams:(INFSmartFoxiPhoneClient *)sfs; 00033 00034 - (void)handleMessage:(id)msgObj type:(NSString *)type delegate:(id <INFSmartFoxISFSEvents>)delegate; 00035 - (void)dispatchDisconnection; 00036 00037 @end
1.5.8