apps-projectcenter/Modules/Debuggers/ProjectCenter/PCDebugger.h

24 lines
450 B
C
Raw Normal View History

/* All Rights reserved */
#include <stdio.h>
#import <AppKit/AppKit.h>
#import <Foundation/Foundation.h>
#import <Protocols/CodeDebugger.h>
@interface PCDebugger : NSObject <CodeDebugger>
{
id debuggerView;
id debuggerWindow;
NSString *path;
NSTask *debuggerTask;
NSFileHandle *standardInput;
NSFileHandle *standardOutput;
FILE *stdInStream;
}
- (void)putChar:(unichar)ch;
@end