123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef APILOTENTRY_H
- #define APILOTENTRY_H
- #include "src/classes/aentry.h"
- #include "src/database/databasetypes.h"
- struct APilotEntry : public AEntry {
- public:
- APilotEntry();
- APilotEntry(RowId_T row_id);
- APilotEntry(RowData_T table_data);
- APilotEntry(const APilotEntry& pe) = default;
- APilotEntry& operator=(const APilotEntry& pe) = default;
- const QString name();
- };
- #endif
|