Vuo 2.4.4
Loading...
Searching...
No Matches
VuoBoolean.h
Go to the documentation of this file.
1
10#ifndef VuoBoolean_h
11#define VuoBoolean_h
12
13#ifdef __cplusplus
14extern "C"
15{
16#endif
17
29typedef unsigned long VuoBoolean;
30
31#define VuoBoolean_SUPPORTS_COMPARISON
32#include "VuoList_VuoBoolean.h"
33
34VuoBoolean VuoBoolean_makeFromJson(struct json_object * js);
35struct json_object * VuoBoolean_getJson(const VuoBoolean value);
37char * VuoBoolean_getSummary(const VuoBoolean value);
38
40
43char * VuoBoolean_getString(const VuoBoolean value);
47
48bool VuoBoolean_areEqual(const VuoBoolean value1, const VuoBoolean value2);
49bool VuoBoolean_isLessThan(const VuoBoolean a, const VuoBoolean b);
50
55#ifdef __cplusplus
56}
57#endif
58
59#endif