mirror of
https://github.com/ksherlock/ample.git
synced 2024-10-31 15:04:56 +00:00
f90f5a6bf3
only applies if you option quit (quit and save windows) or quit unexpectedly.
29 lines
522 B
Objective-C
29 lines
522 B
Objective-C
//
|
|
// DiskImagesWindowController.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 9/13/2020.
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DiskImagesWindowController : NSWindowController <NSWindowRestoration>
|
|
|
|
+(instancetype)sharedInstance;
|
|
|
|
@end
|
|
|
|
@interface DiskImagesWindowController (TableView) <NSTableViewDelegate, NSTableViewDataSource>
|
|
|
|
@end
|
|
|
|
@interface DiskImagesWindowController (Menu) <NSMenuDelegate>
|
|
|
|
@end
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|