00001 #ifndef PANEL_H
00002 #define PANEL_H
00003
00004 #include "stdafx.h"
00005 #include "resource.h"
00006
00007 class VPanel : public CDialog {
00008
00009 public:
00010 VPanel(UINT nIDTemplate, CWnd* pParent = NULL);
00011 virtual ~VPanel();
00012
00013
00014 protected:
00015 virtual void DoDataExchange(CDataExchange* pDX);
00016
00017
00018 protected:
00019
00020 virtual void OnOK();
00021 virtual void OnCancel();
00022 virtual BOOL OnInitDialog();
00023
00024 DECLARE_MESSAGE_MAP()
00025 };
00026
00027
00028 #endif