ably-cocoa/Source/ARTPushChannelSubscriptions...

24 lines
656 B
Objective-C

#ifndef ARTPushChannelSubscriptions_Private_h
#define ARTPushChannelSubscriptions_Private_h
#import <Ably/ARTPushChannelSubscriptions.h>
#import "ARTQueuedDealloc.h"
@class ARTRestInternal;
@interface ARTPushChannelSubscriptionsInternal : NSObject <ARTPushChannelSubscriptionsProtocol>
- (instancetype)initWithRest:(ARTRestInternal *)rest;
@end
@interface ARTPushChannelSubscriptions ()
@property (nonatomic, readonly) ARTPushChannelSubscriptionsInternal *internal;
- (instancetype)initWithInternal:(ARTPushChannelSubscriptionsInternal *)internal queuedDealloc:(ARTQueuedDealloc *)dealloc;
@end
#endif /* ARTPushChannelSubscriptions_Private_h */