My Project
CommandLineParams.h
1 #pragma once
2 
3 namespace ParaEngine
4 {
9  {
10  public:
12  CCommandLineParams(const char* lpCmdLine);
13 
15  const char* GetAppCommandLine();
16 
22  const char* GetAppCommandLineByParam(const char* pParam, const char* defaultValue);
23 
28  void SetAppCommandLine(const char* pCommandLine);
29 
30  private:
34  string m_sAppCmdLine;
35 
37  std::map<string, string> m_commandParams;
38  };
39 
40 }
void SetAppCommandLine(const char *pCommandLine)
set string specifying the command line for the application, excluding the program name...
Definition: CommandLineParams.cpp:29
different physics engine has different winding order.
Definition: EventBinding.h:32
const char * GetAppCommandLine()
get string specifying the command line for the application, excluding the program name...
Definition: CommandLineParams.cpp:24
command line parameters.
Definition: CommandLineParams.h:8
const char * GetAppCommandLineByParam(const char *pParam, const char *defaultValue)
return a specified parameter value in the command line of the application.
Definition: CommandLineParams.cpp:90