12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef AFLIGHTENTRY_H
- #define AFLIGHTENTRY_H
- #include "src/classes/aentry.h"
- class AFlightEntry : public AEntry {
- public:
- AFlightEntry();
- AFlightEntry(RowId_T row_id);
- AFlightEntry(RowData_T table_data);
-
- const QString summary();
- };
- #endif
|