16 lines
266 B
C++
16 lines
266 B
C++
#pragma once
|
|
#include "FunC.h"
|
|
|
|
class FuncTest {
|
|
public:
|
|
FuncTest();
|
|
~FuncTest();
|
|
|
|
|
|
private:
|
|
void PushMsg(WRITETYPE dataType, const string& nameKey, const string& strValue, DATATYPE valueType, DATAHANDLE handleType);
|
|
void PushMsg(const WriteData& wd);
|
|
|
|
|
|
|
|
}; |