15 lines
294 B
C
15 lines
294 B
C
#ifndef TARIFF_TIME_BASE_H_INCLUDED
|
|
#define TARIFF_TIME_BASE_H_INCLUDED
|
|
|
|
#include <QString>
|
|
|
|
struct ATBTimeBase {
|
|
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
|
|
|
|
ATBTimeBase() = default;
|
|
TimeBaseType tbase_type;
|
|
QString tbase_label;
|
|
};
|
|
|
|
#endif // TARIFF_TIME_BASE_H_INCLUDED
|