aircraftentry.h 303 B

12345678910111213141516171819
  1. #ifndef AIRCRAFTENTRY_H
  2. #define AIRCRAFTENTRY_H
  3. #include "row.h"
  4. namespace OPL {
  5. class AircraftEntry : public Row
  6. {
  7. public:
  8. AircraftEntry();
  9. AircraftEntry(const RowData_T &row_data);
  10. AircraftEntry(int row_id, const RowData_T &row_data);
  11. };
  12. } // namespace OPL
  13. #endif // AIRCRAFTENTRY_H