Files
openide/native/MacLauncher/Launcher.h

21 lines
341 B
Objective-C

//
// Created by max on 5/4/12.
//
// To change the template use AppCode | Preferences | File Templates.
//
#import <Foundation/Foundation.h>
#import <JavaVM/jni.h>
@interface Launcher : NSObject {
int argc;
char **argv;
}
- (id)initWithArgc:(int)anArgc argv:(char **)anArgv;
BOOL validationJavaVersion();
- (void) launch;
@end