PrusaSlicer/src/slic3r/GUI/RemovableDriveManagerMM.h
2023-09-01 14:49:07 +02:00

15 lines
392 B
Objective-C

///|/ Copyright (c) Prusa Research 2019 David Kocík @kocikdav
///|/
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
///|/
#import <Cocoa/Cocoa.h>
@interface RemovableDriveManagerMM : NSObject
-(instancetype) init;
-(void) add_unmount_observer;
-(void) on_device_unmount: (NSNotification*) notification;
-(NSArray*) list_dev;
-(void)eject_drive:(NSString *)path;
@end