]> git.mxchange.org Git - flightgear.git/blob - src/GUI/AirportList.hxx
Andrew Midson:
[flightgear.git] / src / GUI / AirportList.hxx
1 // AirportList.hxx - scrolling list of airports.
2
3 #ifndef __AIRPORTLIST_HXX
4
5 #include <plib/pu.h>
6
7 #include "puList.hxx"
8
9 class FGAirportList;
10
11 class AirportList : public puList
12 {
13  public:
14     AirportList (int x, int y, int width, int height);
15     virtual ~AirportList ();
16
17     // FIXME: add other string value functions
18     virtual char * getListStringValue ();
19
20  private:
21     FGAirportList * _airports;
22     int _nAirports;
23     char ** _content;
24 };
25
26 #endif // __AIRPORTLIST_HXX
27
28 // end of AirportList.hxx