Files
BlitzNext/debugger/debuggerapp.h
T
blitz-research 08a613ed0e Initial commit.
2014-01-31 08:23:00 +13:00

21 lines
285 B
C++

#ifndef DEBUGGERAPP_H
#define DEBUGGERAPP_H
#include "mainframe.h"
class DebuggerApp : public CWinApp{
MainFrame *main_frame;
public:
~DebuggerApp();
virtual BOOL InitInstance();
virtual int ExitInstance();
MainFrame *mainFrame();
};
extern DebuggerApp debuggerApp;
#endif