You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
713 B
C++
28 lines
713 B
C++
#pragma once
|
|
#include "ILotInfo.h"
|
|
|
|
#include "LotInfoStruct.h"
|
|
|
|
class CRuntimeLotInfo : public ILotInfo<nsLotInfo::stLotInfo>
|
|
{
|
|
public:
|
|
CRuntimeLotInfo();
|
|
virtual ~CRuntimeLotInfo();
|
|
|
|
// Inherited via ILotInfo
|
|
nsLotInfo::stLotInfo& GetLotInfo() override;
|
|
bool IsLotOpened() override;
|
|
std::string LotName() override;
|
|
int LotQty() override;
|
|
std::string OperatorID() override;
|
|
std::string ShiftID() override;
|
|
std::string StartTime() override;
|
|
std::string Recipe() override;
|
|
std::string Package() override;
|
|
|
|
private:
|
|
void Load();
|
|
|
|
nsLotInfo::stLotInfo m_lotInfo;
|
|
};
|