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