Files
UltraGrid/gui/UltraGrid GUI/UGController.h
Martin Pulec bb5b84d9ea Restructuralize directory structure
* content of ultragrid/ subdirector moved to root
2012-07-02 18:24:25 +02:00

28 lines
488 B
Objective-C

//
// UGController.h
// UltraGrid GUI
//
// Created by Martin Pulec on 11/4/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface UGController : NSObject {
NSString *execPath;
NSTask *task;
NSPipe *pipe;
NSFileHandle *file;
}
-(NSMutableArray*) getOptionsFromUG: (NSString *) param;
-(NSString *) getOutput: (id) param;
-(NSFileHandle *) getOutputHandle: (id) param;
-(BOOL) taskIsRunning;
-(void) stop;
-(NSTask*) task;
@end