TimeMode.hpp
1 #pragma once
2 #include <score_lib_base_export.h>
3 namespace score
4 {
5 
6 enum TimeMode
7 {
8  Bars,
9  Seconds,
10  Flicks
11 };
12 
13 SCORE_LIB_BASE_EXPORT
14 void setGlobalTimeMode(TimeMode);
15 }
Base toolkit upon which the software is built.
Definition: Application.cpp:90