-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathVM.h
33 lines (28 loc) · 825 Bytes
/
VM.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// VM.h
// Veertu VMX
//
// Created by VeertuLabs on 2/20/16.
// Copyright © 2016 Veertu Labs Ltd. All rights reserved.
//
#import <VMManager/POD.h>
#import <VMManager/VMGeneral.h>
#import <VMManager/VMAdvanced.h>
#import <VMManager/VMHw.h>
#import <Foundation/Foundation.h>
@class VMLibrary;
NSArray *removeId(NSArray *a, NSNumber *id);
NSArray *replaceOrAdd(NSArray *a, NSNumber *old_id, NSObject *obj);
FOUNDATION_EXPORT NSString *const VMLaunchNotification;
FOUNDATION_EXPORT NSString *const VMUpdateNotification;
@interface VM : POD
@property NSString *display_name;
+(instancetype)withVMLibrary:(VMLibrary *)vmlib;
@property NSString *name;
@property VMGeneral *general;
@property VMHw *hw;
@property NSString *uuid;
@property NSString *version;
@property VMAdvanced *advanced;
- (NSString *) status;
@end