mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-31 11:01:58 +08:00
15 lines
392 B
Objective-C
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
|