Update-Installer/external/win32cpp/tutorials/Tutorial6/Mainfrm.h
Robert Knight d16da069e9 Add Win++ library to external
This is a thin wrapper around the Win32 API used in the Win32
Updater Dialog implementation.
2011-08-23 19:54:52 +01:00

30 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