mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-08 00:36:21 +00:00
18 lines
330 B
Objective-C
18 lines
330 B
Objective-C
//
|
|
// TemporaryHost.m
|
|
// Moonlight
|
|
//
|
|
// Created by Cameron Gutman on 12/1/15.
|
|
// Copyright © 2015 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "TemporaryHost.h"
|
|
|
|
@implementation TemporaryHost
|
|
|
|
- (NSComparisonResult)compareName:(TemporaryHost *)other {
|
|
return [self.name caseInsensitiveCompare:other.name];
|
|
}
|
|
|
|
@end
|