mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
18 lines
347 B
Objective-C
18 lines
347 B
Objective-C
//
|
|
// DiscoveryWorker.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 1/2/15.
|
|
// Copyright (c) 2015 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "TemporaryHost.h"
|
|
|
|
@interface DiscoveryWorker : NSOperation
|
|
|
|
- (id) initWithHost:(TemporaryHost*)host uniqueId:(NSString*)uniqueId;
|
|
- (void) discoverHost;
|
|
- (TemporaryHost*) getHost;
|
|
|
|
@end
|