mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
32 lines
836 B
Objective-C
32 lines
836 B
Objective-C
//
|
|
// TemporaryApp.h
|
|
// Moonlight
|
|
//
|
|
// Created by Cameron Gutman on 9/30/15.
|
|
// Copyright © 2015 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "TemporaryHost.h"
|
|
#import "App+CoreDataClass.h"
|
|
|
|
@interface TemporaryApp : NSObject
|
|
|
|
@property (nullable, nonatomic, retain) NSString *id;
|
|
@property (nullable, nonatomic, retain) NSString *name;
|
|
@property (nullable, nonatomic, retain) NSString *installPath;
|
|
@property (nonatomic) BOOL hdrSupported;
|
|
@property (nonatomic) BOOL hidden;
|
|
@property (nullable, nonatomic, retain) TemporaryHost *host;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
- (id) initFromApp:(App*)app withTempHost:(TemporaryHost*)tempHost;
|
|
|
|
- (NSComparisonResult)compareName:(TemporaryApp *)other;
|
|
|
|
- (void) propagateChangesToParent:(App*)parent withHost:(Host*)host;
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
@end
|