mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27382 72102866-910b-0410-8b05-ffd578937521
17 lines
307 B
Objective-C
17 lines
307 B
Objective-C
/* All Rights reserved */
|
|
|
|
#include <AppKit/AppKit.h>
|
|
#include <Foundation/Foundation.h>
|
|
|
|
#include <Protocols/CodeDebugger.h>
|
|
|
|
@interface PCDebugger : NSObject <CodeDebugger>
|
|
{
|
|
id debuggerView;
|
|
id debuggerWindow;
|
|
NSString *path;
|
|
NSTask *debuggerTask;
|
|
id standardInput;
|
|
id standardOutput;
|
|
}
|
|
@end
|