Vuo 2.4.4
Loading...
Searching...
No Matches
VuoWave.h
Go to the documentation of this file.
1
10#ifndef VuoWave_h
11#define VuoWave_h
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
28typedef enum {
29 VuoWave_Sine,
30 VuoWave_Triangle,
31 VuoWave_Sawtooth
32} VuoWave;
33
34#include "VuoList_VuoWave.h"
35
36VuoWave VuoWave_makeFromJson(struct json_object * js);
37struct json_object * VuoWave_getJson(const VuoWave value);
39char * VuoWave_getSummary(const VuoWave value);
40
42
45char * VuoWave_getString(const VuoWave value);
49
54#ifdef __cplusplus
55}
56#endif
57
58#endif