@@ -21,4 +21,3 @@
#define DEB(expr) \
qDebug() << "aircraft ::" << __func__ << "\t" << expr
-
@@ -27,8 +27,6 @@
class aircraft : public entry
{
using entry::entry;
-public:
- bool verify() override;
};
#endif // AIRCRAFT_H
@@ -16,3 +16,4 @@
*along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "flight.h"
+
class flight : public entry
#endif // FLIGHT_H
@@ -17,3 +17,4 @@
#include "pilot.h"
@@ -23,8 +23,6 @@
class pilot : public entry
#endif // PILOT_H
@@ -43,7 +43,6 @@ public:
bool remove();
bool exists();
- bool virtual verify();
// Debug functionality
void print();