当前位置: 首页>>代码示例>>C++>>正文


C++ Tools::parseCmdLine方法代码示例

本文整理汇总了C++中Tools::parseCmdLine方法的典型用法代码示例。如果您正苦于以下问题:C++ Tools::parseCmdLine方法的具体用法?C++ Tools::parseCmdLine怎么用?C++ Tools::parseCmdLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Tools的用法示例。


在下文中一共展示了Tools::parseCmdLine方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: WinMain

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR pCmdLine, int nCmdShow)
{
	char c;
	bool bStopTest = false;
	iError = ERROR_SUCCESS;
	int _iError = ERROR_SUCCESS;
	int iCount = 0;


	if (0 == strcmp(pCmdLine, "") )
		_iError = createGUI(hInstance, nCmdShow);
	else
	{
		svParameters = tools.parseCmdLine(pCmdLine);
		
		_iError = parseCmdParameters();
		if (_iError == ERROR_SUCCESS)
		{

			if (!AllocConsole())
				MessageBoxA(NULL, "console allocation error", WINDOW_TITLE, MB_OK | MB_ICONERROR);
		
			cout << "starting the thread" << endl;

			thread t1 (&start);

			t1.detach();

			cout << "Test in progress" << endl;
			cout << "Press ESC to stop the test" << endl;
			

			while(bContinue && !bStopTest)
			{
				c = getch();

				//27 for esc key
				if (c == 27)
				{
					interpreter.stopTest();
					cout << "Quiting test" << endl;
					bStopTest = true;
					cout << "Testing stopped. Press enter to finish" << endl;
					//getchar();
				}
				iCount++;
			}

			cout << "Testing finished" << endl;

			FreeConsole();

			return iError;
		}
		else
		{//error parsing parameters
			tools.showCmdHelp();
			return _iError;
		}
	}

	return _iError;
}
开发者ID:matt-han,项目名称:ba_gui1,代码行数:63,代码来源:main.cpp


注:本文中的Tools::parseCmdLine方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。