mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 20:01:05 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27393 72102866-910b-0410-8b05-ffd578937521
23 lines
450 B
Objective-C
23 lines
450 B
Objective-C
/* 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
|