apps-projectcenter/Modules/Debuggers/ProjectCenter/PCDebugger.h
Gregory John Casamento c35bd787df Changes for gorm file and debugger class.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27382 72102866-910b-0410-8b05-ffd578937521
2008-12-22 00:09:23 +00:00

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