OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
extended_types.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/network/common/parameter_properties.hpp>
5
6#include <string>
7#include <vector>
8
9namespace ossia
10{
11
13using extended_type = std::string;
14
15// Here are the known extended types :
20
25
28OSSIA_EXPORT extended_type url_type();
29
32OSSIA_EXPORT extended_type float_array_type();
33
35OSSIA_EXPORT extended_type float_list_type();
36
38OSSIA_EXPORT extended_type integer_list_type();
39
41OSSIA_EXPORT extended_type string_list_type();
42
45OSSIA_EXPORT extended_type u8_blob_type();
46
48OSSIA_EXPORT extended_type list_type();
49
51OSSIA_EXPORT extended_type nil_type();
52
54OSSIA_EXPORT extended_type empty_type();
55
57OSSIA_EXPORT std::vector<ossia::val_type> underlying_type(const extended_type&);
58}
Definition git_info.h:7
ossia::val_type underlying_type(const complex_type &t)
Definition complex_type.cpp:40
extended_type list_type()
Means that the array is a dynamic array (e.g. ossia::val_type::LIST)
Definition extended_types.cpp:48
extended_type integer_list_type()
Means that the array should be interpreted as a dynamic int list.
Definition extended_types.cpp:33
extended_type filesystem_path_type()
Definition extended_types.cpp:13
std::string extended_type
How a low-level type should be interpreted.
Definition complex_type.hpp:9
extended_type nil_type()
Means that the value is an impulse with OSC type-tag NIL.
Definition extended_types.cpp:53
extended_type string_list_type()
Means that the array should be interpreted as a dynamic string list.
Definition extended_types.cpp:38
extended_type generic_buffer_type()
Definition extended_types.cpp:8
extended_type float_list_type()
Means that the array should be interpreted as a dynamic float list.
Definition extended_types.cpp:28
extended_type float_array_type()
Definition extended_types.cpp:23
extended_type u8_blob_type()
Definition extended_types.cpp:43
extended_type url_type()
Definition extended_types.cpp:18
extended_type empty_type()
Means that the value is an impulse with no OSC type-tag (,\0\0\0)
Definition extended_types.cpp:58