mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-03 22:50:37 +08:00

check for other instances during startup send message with command line arguments if found and terminate listen for those messages and load objects from paths in messages from them
9 lines
175 B
Objective-C
9 lines
175 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface OtherInstanceMessageHandlerMac : NSObject
|
|
|
|
-(instancetype) init;
|
|
-(void) add_observer;
|
|
-(void) message_update:(NSNotification *)note;
|
|
@end
|