Files
Michael Fabian 'Xaymar' Dirks f713369a01 debugger: Formatting;
2019-01-18 17:04:34 +01:00

21 lines
290 B
C++

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