2021-06-08 22:40:20 -04:00
|
|
|
//
|
|
|
|
// NewMachineViewController.h
|
|
|
|
// Ample
|
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 6/8/2021.
|
|
|
|
// Copyright © 2021 Kelvin Sherlock. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Ample.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface NewMachineViewController : NSViewController
|
|
|
|
|
|
|
|
@property (nullable) NSString *machine;
|
|
|
|
|
2021-06-13 17:17:47 -04:00
|
|
|
-(void)reset;
|
|
|
|
|
2021-06-08 22:40:20 -04:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NewMachineViewController (Table) <NSOutlineViewDelegate, NSOutlineViewDataSource>
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface NewMachineViewController (Bookmark) <Bookmark>
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|