mirror of
https://github.com/ksherlock/ample.git
synced 2024-11-15 22:07:28 +00:00
21 lines
368 B
Objective-C
21 lines
368 B
Objective-C
//
|
|
// MachineViewController.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 8/16/2020.
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MachineViewController : NSViewController <NSBrowserDelegate>
|
|
|
|
@property NSString *machine;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|