DragonNest/Server/DNLogServer/DNQueryTest.h
2024-12-19 09:48:26 +08:00

18 lines
No EOL
254 B
C++

#pragma once
#include "Singleton.h"
class CDNQueryTest:public CSingleton<CDNQueryTest>
{
public:
CDNQueryTest();
~CDNQueryTest();
void ProcessQueryTest( const char* pszCmd );
private:
void P_AddCommonLog( std::vector<std::string>& vSplit );
};