23 lines
358 B
C
23 lines
358 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
class PrepareJobCfg
|
||
|
{
|
||
|
public:
|
||
|
PrepareJobCfg();
|
||
|
~PrepareJobCfg();
|
||
|
|
||
|
public:
|
||
|
int m_MachineType;
|
||
|
int m_LayerIndex;
|
||
|
bool m_IsPrintAble;
|
||
|
|
||
|
public:
|
||
|
static const string TABLE_NAME;
|
||
|
static const string FIELD_MACHINE_TYPE;
|
||
|
static const string FIELD_LAYER_INDEX;
|
||
|
static const string FIELD_IS_PRINTABLE;
|
||
|
};
|
||
|
|