#include "StdAfx.h"
|
#include "CHAfmControls/AfmControl.h"
|
|
CAfmControl::CAfmControl(int nIndex)
|
{
|
m_nIndex = nIndex;
|
Reset();
|
}
|
|
CAfmControl::~CAfmControl(void)
|
{
|
Reset();
|
}
|
|
void CAfmControl::Reset()
|
{
|
m_pAFC2P = NULL;
|
m_bConnected = FALSE;
|
|
m_nStatus = 0;
|
m_nRecipeStatus = 0;
|
|
m_strRecipeName = _T("");
|
m_nRecipeIndex = -1;
|
m_nZoomIndex = -1;
|
m_nTracking = 0;
|
|
m_vecAFMRecipeInfo.clear();
|
}
|
|
BOOL CAfmControl::GetConnected() const
|
{
|
return m_bConnected;
|
}
|
|
BOOL CAfmControl::SetSystemTime( SYSTEMTIME stCurrentTime )
|
{
|
return TRUE;
|
}
|