コード例 #1
0
ファイル: main.cpp プロジェクト: linkpark/study
int main(){
	CLExecutiveFunctionProvider *printer = new CLParaPrinter();
	CLExecutive *pThread = new CLThread(printer);
	
	pThread->run((void*)2);
	pThread->waitForDeath();
	 
	return 0;
}