18 lines
No EOL
544 B
C++
18 lines
No EOL
544 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 );
|
||
}; |