mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
347 B
Objective-C
16 lines
347 B
Objective-C
// Created by Michael Kirk on 9/14/16.
|
|
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class PushManager;
|
|
|
|
@interface OWSStaleNotificationObserver : NSObject
|
|
|
|
- (instancetype)initWithPushManager:(PushManager *)pushManager NS_DESIGNATED_INITIALIZER;
|
|
- (void)startObserving;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|