Files
BlitzNext/debugger/debuggerapp.hpp
T

21 lines
290 B
C++
Raw Normal View History

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
2019-01-18 17:04:34 +01:00
class DebuggerApp : public CWinApp {
MainFrame* main_frame;
2014-01-31 08:23:00 +13:00
2019-01-18 17:04:34 +01:00
public:
2014-01-31 08:23:00 +13:00
~DebuggerApp();
virtual BOOL InitInstance();
2019-01-18 17:04:34 +01:00
virtual int ExitInstance();
2014-01-31 08:23:00 +13:00
2019-01-18 17:04:34 +01:00
MainFrame* mainFrame();
2014-01-31 08:23:00 +13:00
};
extern DebuggerApp debuggerApp;
#endif