GrpcPrint/PrintS/Config/bean/CoverCfg.cpp
2024-03-19 17:45:12 +08:00

18 lines
289 B
C++

#include "CoverCfg.h"
#include "BaseConfig.h"
CoverCfg::CoverCfg()
{
m_cover_distance= 700000;
m_cover_speed=90;
m_cover_shift_speed=90;
m_CoverDirection= ONE_WAY2;
m_SupplyTime = 1000.0;
InitializeCriticalSection(&m_CS);
}
CoverCfg::~CoverCfg()
{
DeleteCriticalSection(&m_CS);
}