2008-12-16 21:31:41 +00:00
|
|
|
/* All Rights reserved */
|
|
|
|
|
2008-12-22 00:38:35 +00:00
|
|
|
#include <stdio.h>
|
2008-12-16 21:31:41 +00:00
|
|
|
|
2008-12-22 00:38:35 +00:00
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
#import <Protocols/CodeDebugger.h>
|
2008-12-22 00:09:23 +00:00
|
|
|
|
|
|
|
@interface PCDebugger : NSObject <CodeDebugger>
|
2008-12-16 21:31:41 +00:00
|
|
|
{
|
2008-12-22 00:38:35 +00:00
|
|
|
id debuggerView;
|
|
|
|
id debuggerWindow;
|
|
|
|
NSString *path;
|
|
|
|
NSTask *debuggerTask;
|
|
|
|
NSFileHandle *standardInput;
|
|
|
|
NSFileHandle *standardOutput;
|
|
|
|
FILE *stdInStream;
|
2008-12-16 21:31:41 +00:00
|
|
|
}
|
2008-12-22 00:38:35 +00:00
|
|
|
|
|
|
|
- (void)putChar:(unichar)ch;
|
|
|
|
|
2008-12-16 21:31:41 +00:00
|
|
|
@end
|