session-ios/Signal/src/AppDelegate.h
2014-07-03 03:12:34 +02:00

15 lines
422 B
Objective-C

#import <UIKit/UIKit.h>
#import "FutureSource.h"
#pragma mark Logging - Production logging wants us to write some logs to a file in case we need it for debugging.
#import <CocoaLumberjack/DDTTYLogger.h>
#import <CocoaLumberjack/DDFileLogger.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (nonatomic, readonly) DDFileLogger *fileLogger;
@end