27 lines
651 B
C++
27 lines
651 B
C++
#pragma once
|
|
|
|
//#include <string>
|
|
//#include <vector>
|
|
|
|
class KCommandEnvBuilder
|
|
{
|
|
public:
|
|
KCommandEnvBuilder();
|
|
virtual ~KCommandEnvBuilder();
|
|
|
|
public:
|
|
void BuildCommand( std::vector<std::string> vecStringList );
|
|
|
|
private:
|
|
const bool IsFiltering( std::vector<std::string> vecStringList );
|
|
const bool IsReservedType( std::vector<std::string> vecStringList );
|
|
|
|
const int CheckType( std::string & strKey );
|
|
const bool CheckFiltering( std::string & strKey );
|
|
const bool CheckReservedType( std::string & strKey, std::vector<std::string>& vecStringList );
|
|
|
|
struct KCommandEnvReceiver* m_pEnvReceiver;
|
|
};
|
|
|
|
KCommandEnvBuilder & GetCommandBuilder();
|