Vuo 2.4.4
Loading...
Searching...
No Matches
VuoTempoRange.h
Go to the documentation of this file.
1
10#pragma once
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
27typedef enum
28{
29 VuoTempoRange_Andante,
30 VuoTempoRange_Moderato,
31 VuoTempoRange_Allegro,
32 VuoTempoRange_Presto,
33 VuoTempoRange_Prestissimo
35
36#define VuoTempoRange_SUPPORTS_COMPARISON
38
39VuoTempoRange VuoTempoRange_makeFromJson(struct json_object *js);
40struct json_object *VuoTempoRange_getJson(const VuoTempoRange value);
43
45
46bool VuoTempoRange_areEqual(const VuoTempoRange valueA, const VuoTempoRange valueB);
47bool VuoTempoRange_isLessThan(const VuoTempoRange valueA, const VuoTempoRange valueB);
48
57
62#ifdef __cplusplus
63}
64#endif