2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#ifndef DEBUGGERAPP_H
|
|
|
|
|
#define DEBUGGERAPP_H
|
|
|
|
|
|
2019-01-18 15:55:40 +01:00
|
|
|
#include "mainframe.hpp"
|
2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
class DebuggerApp : public CWinApp{
|
|
|
|
|
MainFrame *main_frame;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
~DebuggerApp();
|
|
|
|
|
|
|
|
|
|
virtual BOOL InitInstance();
|
|
|
|
|
virtual int ExitInstance();
|
|
|
|
|
|
|
|
|
|
MainFrame *mainFrame();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern DebuggerApp debuggerApp;
|
|
|
|
|
|
|
|
|
|
#endif
|