mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 00:25:58 +02:00
11 lines
196 B
Objective-C
11 lines
196 B
Objective-C
#import <SSignalKit/SDisposable.h>
|
|
|
|
@class SSignal;
|
|
|
|
@interface SDisposableSet : NSObject <SDisposable>
|
|
|
|
- (void)add:(id<SDisposable>)disposable;
|
|
- (void)remove:(id<SDisposable>)disposable;
|
|
|
|
@end
|