MOBILISIS-Calculator/library/include/mobilisis/tariff_timebase.h

15 lines
288 B
C

#ifndef TARIFF_TIME_BASE_H_INCLUDED
#define TARIFF_TIME_BASE_H_INCLUDED
#include <QString>
struct TimeBase {
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
TimeBase() = default;
TimeBaseType tbase_type;
QString tbase_label;
};
#endif // TARIFF_TIME_BASE_H_INCLUDED