3#include <ossia/detail/config.hpp>
5#include <ossia/detail/string_view.hpp>
6#include <ossia/preset/exception.hpp>
25namespace ossia::presets
27using preset = std::vector<std::pair<std::string, ossia::value>>;
29using instance_functions = std::vector<
32using preset_pair = std::pair<std::string, ossia::value>;
34OSSIA_EXPORT preset read_json(
const std::string&,
bool skip_first_level =
true);
35OSSIA_EXPORT std::string write_json(
const std::string& devicename,
const preset&);
37OSSIA_EXPORT std::string to_string(
const preset&);
38OSSIA_EXPORT preset from_string(
const std::string_view& str);
46struct preset_save_options
65OSSIA_EXPORT
void write_file(std::string_view
string, std::string_view filename);
67OSSIA_EXPORT
const std::string read_file(
const std::string& filename);
76OSSIA_EXPORT
const std::string
103OSSIA_EXPORT
void apply_preset(
105 presets::instance_functions = {},
bool allow_nonterminal =
false,
106 bool remove_first =
true);
108OSSIA_EXPORT presets::preset
Root of a device tree.
Definition ossia/network/base/device.hpp:58
The node_base class.
Definition node.hpp:48