mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
23 lines
413 B
Objective-C
23 lines
413 B
Objective-C
//
|
|
// CleanupCrew.h
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 4/5/15.
|
|
// Copyright (c) 2015 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "Host.h"
|
|
|
|
@protocol CleanupCallback <NSObject>
|
|
|
|
- (void) cleanedUpHosts:(NSSet*) host;
|
|
|
|
@end
|
|
|
|
@interface CleanupCrew : NSOperation
|
|
|
|
- (id) initWithHostList:(NSArray*) hostList andCallback:(id<CleanupCallback>)callback;
|
|
|
|
@end
|