mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-22 04:03:19 +00:00
41 lines
667 B
Objective-C
41 lines
667 B
Objective-C
//
|
|
// Computer.m
|
|
// Limelight
|
|
//
|
|
// Created by Diego Waxemberg on 10/14/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "Computer.h"
|
|
|
|
@implementation Computer
|
|
|
|
- (id) initWithHost:(NSNetService *)host {
|
|
self = [super init];
|
|
|
|
self.hostName = [host hostName];
|
|
self.displayName = [host name];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (id) initWithIp:(NSString*)host {
|
|
self = [super init];
|
|
|
|
self.hostName = host;
|
|
self.displayName = host;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (id) initPlaceholder {
|
|
self = [super init];
|
|
|
|
self.hostName = NULL;
|
|
self.displayName = @"No computers found";
|
|
|
|
return self;
|
|
}
|
|
|
|
@end
|