moonlight-ios/Limelight/UIComputerView.h
Diego Waxemberg e8c8f4f8e9 Created new host discovery system
- now store host uuid and mac address
- use uuid to check for duplicate hosts
- try local and external IPs
- pair status is shown
- server status is shown
- validate host when manually adding
2015-01-01 22:30:03 -05:00

25 lines
491 B
Objective-C

//
// UIComputerView.h
// Limelight
//
// Created by Diego Waxemberg on 10/22/14.
// Copyright (c) 2014 Limelight Stream. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Host.h"
@protocol HostCallback <NSObject>
- (void) hostClicked:(Host*)host;
- (void) addHostClicked;
@end
@interface UIComputerView : UIView
- (id) initWithComputer:(Host*)host andCallback:(id<HostCallback>)callback;
- (id) initForAddWithCallback:(id<HostCallback>)callback;
- (NSString*) online;
@end