// $RCSfile: Flight.h,v $
#ifndef Flight_h
#define Flight_h

#include "Money.h"
#include "City.h"

class Flight {
public:
  Flight(City *from, City *to);
  virtual bool contains(City *c);
  virtual Money* getTotal();

private:
  City *from;
  City *to;
};

#endif
