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.
27 lines
475 B
C++
27 lines
475 B
C++
#include "StdAfx.h"
|
|
#include "MyTest.h"
|
|
#include "CStringFuc.h"
|
|
#include "LogMgr.h"
|
|
|
|
#include "CommonFlowMgr.h"
|
|
|
|
|
|
|
|
CMyTest::CMyTest(void)
|
|
{
|
|
|
|
}
|
|
CMyTest::~CMyTest(void)
|
|
{
|
|
}
|
|
void CMyTest::MyTestFunc1(CMyTestPar &MyTestPar)
|
|
{
|
|
CLogInfo LogInfo;
|
|
LogInfo.m_ClassName = "CMyTest";
|
|
LogInfo.m_FuncName = "MyTestFunc1";
|
|
gLogMgr->WriteLogInfo(LogInfo);
|
|
|
|
//gCommonFlowMgr->WriteLoadportE84IOFlow(_LoadPortType_Port2);
|
|
|
|
gLogMgr->WriteLogInfo(LogInfo);
|
|
} |