2023-12-12 12:14:14 +01:00
|
|
|
#ifndef TARIFF_TIME_BASE_H_INCLUDED
|
|
|
|
#define TARIFF_TIME_BASE_H_INCLUDED
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
2023-12-12 17:55:06 +01:00
|
|
|
struct ATBTimeBase {
|
2023-12-12 12:14:14 +01:00
|
|
|
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
|
|
|
|
|
2023-12-12 17:55:06 +01:00
|
|
|
ATBTimeBase() = default;
|
2023-12-12 12:14:14 +01:00
|
|
|
TimeBaseType tbase_type;
|
|
|
|
QString tbase_label;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TARIFF_TIME_BASE_H_INCLUDED
|