3#include <ossia/detail/config.hpp>
26 using children_type = std::vector<state_element>;
29 OSSIA_EXPORT
friend bool operator==(
const state& lhs,
const state& rhs);
30 OSSIA_EXPORT
friend bool operator!=(
const state& lhs,
const state& rhs);
32 children_type::iterator begin()
noexcept;
33 children_type::iterator end()
noexcept;
34 children_type::const_iterator begin()
const noexcept;
35 children_type::const_iterator end()
const noexcept;
36 children_type::const_iterator cbegin()
const noexcept;
37 children_type::const_iterator cend()
const noexcept;
39 const children_type& children()
const noexcept;
41 std::size_t size()
const;
49 template <
class Optional_T>
50 auto add(Optional_T&& opt)
51 ->
decltype(std::declval<typename std::remove_reference_t<Optional_T>::value_type>(),
void())
54 add(*std::forward<Optional_T>(opt));
58 void remove(children_type::iterator e);
59 void remove(children_type::const_iterator e);
61 void reserve(std::size_t);
65 std::vector<state_element> m_children;
68inline auto begin(
state& s)
72inline auto begin(
const state& s)
76inline auto end(state& s)
80inline auto end(
const state& s)
The state class.
Definition editor/state/state.hpp:25
void launch(state_element &e)
launch Launch a state_element
Definition state_element.cpp:18
void flatten_and_filter(ossia::state &state, const state_element &element)
append each message of the state to the current state in order to eliminate address redundancy
Definition editor/state/state.cpp:106
ossia::nullable_variant< message, state, piecewise_message, piecewise_vec_message< 2 >, piecewise_vec_message< 3 >, piecewise_vec_message< 4 > > state_element
Definition state_element_fwd.hpp:28
void merge_flatten_and_filter(ossia::state &state, const state_element &element)
These will also merge single addresses.
Definition editor/state/state.cpp:116