Files
BlitzNext/debugger/debuggerapp.h
T

21 lines
285 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#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