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