Esempio n. 1
0
	void ActiveTakeoffPlane(int idPista){
		Plane* next = takeoffList.front();
		takeoffList.pop_front();
		thread_pista[idPista]=next->GetIDThread();
		next->TerPista();
	}
Esempio n. 2
0
	void ActiveLandingPlane(int idPista){
		Plane* next = landList.front();
		landList.pop_front();
		thread_pista[idPista]=next->GetIDThread();
		next->TerPista();
	}