#ifndef SCSTWLIBRARIES_GLOBAL_H #define SCSTWLIBRARIES_GLOBAL_H #include #if defined(SCSTWLIBRARIES_LIBRARY) # define SCSTWLIBRARIES_EXPORT Q_DECL_EXPORT #else # define SCSTWLIBRARIES_EXPORT Q_DECL_IMPORT #endif /** * Some global enums * */ enum raceState { IDLE, STARTING, WAITING, RUNNING, STOPPED }; enum signalKey { RaceStateChanged, TimersChanged, ExtensionsChanged, NextStartActionChanged /*, ProfilesChanged*/ }; enum nextStartAction { AtYourMarks, Ready, Start, None }; #endif // SCSTWCLIENT_GLOBAL_H