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