// $RCSfile: Flight.cpp,v $

#include "Flight.h"

Flight::Flight(City *f, City *t)
  : from(f), to(t)
{}

bool Flight::contains(City *c)
{
  return *c == *from || *c == *to;
}

