Hotwheels-Cluster 1.2
Creation of Cluster APP for SEA:ME project.
 
Loading...
Searching...
No Matches
IMileageFileHandler.hpp
Go to the documentation of this file.
1
15
16#ifndef IMILEAGEFILEHANDLER_HPP
17#define IMILEAGEFILEHANDLER_HPP
18
19#include <QString>
20
26{
27public:
28 virtual ~IMileageFileHandler() = default;
29 virtual double readMileage() const = 0;
30 virtual void writeMileage(double mileage) const = 0;
31};
32
33#endif // IMILEAGEFILEHANDLER_HPP
Interface for reading and writing the mileage of a vehicle to a file.
virtual double readMileage() const =0
virtual void writeMileage(double mileage) const =0
virtual ~IMileageFileHandler()=default