fast/Plugin/Fast/BaseCamera.cpp

67 lines
930 B
C++
Raw Normal View History

2025-01-20 10:30:01 +08:00
// MsgHandleDlg.cpp : ʵ<><CAB5><EFBFBD>ļ<EFBFBD>
//
#include "stdafx.h"
#include "Fast.h"
#include "BaseCamera.h"
#include "afxdialogex.h"
#define TIMER_LOGIN 10
#define TIMER_CLEAR_RECORD 22
// CMsgHandleDlg <20>Ի<EFBFBD><D4BB><EFBFBD>
IMPLEMENT_DYNAMIC(CBaseCamera, CDialog)
CBaseCamera::CBaseCamera(int nIdx, CWnd* pParent /*=NULL*/)
: CDialog(IDD_DLG_CAM, pParent)
{
m_nCameraIdx = nIdx;
m_pParentWnd = pParent;
}
CBaseCamera::~CBaseCamera()
{
}
void CBaseCamera::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CBaseCamera, CDialog)
ON_WM_DESTROY()
ON_WM_TIMER()
END_MESSAGE_MAP()
// CMsgHandleDlg <20><>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
BOOL CBaseCamera::OnInitDialog()
{
CDialog::OnInitDialog();
return TRUE; // return TRUE unless you set the focus to a control
}
void CBaseCamera::OnDestroy()
{
CDialog::OnDestroy();
}
void CBaseCamera::OnTimer(UINT_PTR nIDEvent)
{
CDialog::OnTimer(nIDEvent);
}