session-ios/SessionShareExtension/ShareAppExtensionContext.h

19 lines
438 B
C
Raw Normal View History

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
2020-11-11 07:45:50 +01:00
#import <SignalUtilitiesKit/AppContext.h>
NS_ASSUME_NONNULL_BEGIN
2017-12-06 21:53:19 +01:00
// This is _NOT_ a singleton and will be instantiated each time that the SAE is used.
@interface ShareAppExtensionContext : NSObject <AppContext>
- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithRootViewController:(UIViewController *)rootViewController;
@end
NS_ASSUME_NONNULL_END