debuggerapp.h 285 B

123456789101112131415161718192021
  1. #ifndef DEBUGGERAPP_H
  2. #define DEBUGGERAPP_H
  3. #include "mainframe.h"
  4. class DebuggerApp : public CWinApp{
  5. MainFrame *main_frame;
  6. public:
  7. ~DebuggerApp();
  8. virtual BOOL InitInstance();
  9. virtual int ExitInstance();
  10. MainFrame *mainFrame();
  11. };
  12. extern DebuggerApp debuggerApp;
  13. #endif