mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-29 15:11:48 +00:00
31 lines
487 B
C
31 lines
487 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
|
||
|
|