session-ios/Session/Meta/AppDelegate.h

17 lines
335 B
C
Raw Normal View History

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import <UIKit/UIKit.h>
2014-10-29 21:58:58 +01:00
extern NSString *const AppDelegateStoryboardMain;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
2014-05-06 19:41:08 +02:00
2020-03-25 00:27:43 +01:00
- (void)startPollerIfNeeded;
- (void)stopPoller;
2020-02-21 04:40:44 +01:00
- (void)startOpenGroupPollersIfNeeded;
- (void)stopOpenGroupPollers;
2014-05-06 19:41:08 +02:00
@end