mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-08 23:01:51 +00:00
29 lines
485 B
C
29 lines
485 B
C
|
///////////////////////////////////////////////////////
|
||
|
// Mainfrm.h
|
||
|
// Declaration of the CMainFrame class
|
||
|
|
||
|
#ifndef MAINFRM_H
|
||
|
#define MAINFRM_H
|
||
|
|
||
|
#include "Frame.h"
|
||
|
#include "View.h"
|
||
|
|
||
|
|
||
|
class CMainFrame : public CFrame
|
||
|
{
|
||
|
public:
|
||
|
CMainFrame(void);
|
||
|
virtual ~CMainFrame();
|
||
|
|
||
|
protected:
|
||
|
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
|
||
|
virtual void SetupToolBar();
|
||
|
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||
|
|
||
|
private:
|
||
|
CView m_View;
|
||
|
};
|
||
|
|
||
|
#endif //MAINFRM_H
|
||
|
|