Skip to content
Snippets Groups Projects
DelegateClass.h 463 B
Newer Older
Armin Felder's avatar
Armin Felder committed
#include "iosdevicetokenstorage.h"
#include "iosnotificationreceiver.h"

class IosDeviceTokenStorage;

@interface DelegateObject:NSObject
{
    IosDeviceTokenStorage *m_instance;
    IosNotificationReceiver *mNotificationsInstance;
}

- (id) initWithCPPInstance;

- (void) setToken:(NSString *)token;

- (void) sendMessage:(NSString *)pServer : (NSString *)pRid : (NSString *)pName : (NSString *)pType;

Armin Felder's avatar
Armin Felder committed
- (void) openChannelByName:(NSString *)channelName;

Armin Felder's avatar
Armin Felder committed
@end