Minor: rename to ATBTimeBase

This commit is contained in:
Gerhard Hoffmann 2023-12-12 17:55:06 +01:00
parent 81459f7ab4
commit cc07b8f20e

View File

@ -3,10 +3,10 @@
#include <QString>
struct TimeBase {
struct ATBTimeBase {
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
TimeBase() = default;
ATBTimeBase() = default;
TimeBaseType tbase_type;
QString tbase_label;
};