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.
20 lines
417 B
C++
20 lines
417 B
C++
7 months ago
|
#include "StdAfx.h"
|
||
|
#include "Module.h"
|
||
|
#include "WorkFileLable.h"
|
||
|
#include "LogMgr.h"
|
||
|
#include "WarningMgr.h"
|
||
|
|
||
|
|
||
|
CModule::CModule(void)
|
||
|
{
|
||
|
}
|
||
|
void CModule::SaveWorkFile(vector<CLab> &LabVec)
|
||
|
{
|
||
|
{
|
||
|
LabVec.push_back(CLab(LAB_MODULE_START));
|
||
|
LabVec.push_back(CLab(LAB_MODULE_TYPE,(int)GetModuleType()));
|
||
|
WriteWorkFileExt(LabVec);
|
||
|
LabVec.push_back(CLab(LAB_MODULE_END));
|
||
|
}
|
||
|
}
|