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@27314 72102866-910b-0410-8b05-ffd578937521
14 lines
235 B
Objective-C
14 lines
235 B
Objective-C
/* All Rights reserved */
|
|
|
|
#include <AppKit/AppKit.h>
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@interface PCDebugger : NSObject
|
|
{
|
|
id consoleView;
|
|
id consoleWindow;
|
|
NSTask *debuggerTask;
|
|
id standardInput;
|
|
id standardOutput;
|
|
}
|
|
@end
|