2#include <ossia/detail/config.hpp>
16template <
typename X,
typename Y>
20struct behavior_variant_type
28 std::shared_ptr<ossia::curve_abstract> m_value0;
30 std::vector<ossia::behavior> m_value1;
52 static const constexpr auto npos = Npos;
53 [[nodiscard]]
int which()
const;
55 operator bool()
const;
57 const T* target()
const;
67 behavior_variant_type();
68 ~behavior_variant_type();
69 behavior_variant_type(
const std::shared_ptr<ossia::curve_abstract>& v);
70 behavior_variant_type(std::shared_ptr<ossia::curve_abstract>&& v);
71 behavior_variant_type(
const std::vector<ossia::behavior>& v);
72 behavior_variant_type(std::vector<ossia::behavior>&& v);
73 behavior_variant_type(
const behavior_variant_type& other);
74 behavior_variant_type(behavior_variant_type&& other)
noexcept;
75 behavior_variant_type& operator=(
const behavior_variant_type& other);
76 behavior_variant_type& operator=(behavior_variant_type&& other)
noexcept;
84struct OSSIA_EXPORT behavior final
86 behavior_variant_type v;
89 behavior(
const behavior&) =
default;
90 behavior(behavior&&) =
default;
91 behavior& operator=(
const behavior&) =
default;
92 behavior& operator=(behavior&&) =
default;
94 behavior(std::shared_ptr<ossia::curve_abstract> c)
98 template <
typename T,
typename U>
100 : v{curve_ptr{std::move(c)}}
103 behavior(std::vector<ossia::behavior> c)
113 operator bool()
const {
return bool(v); }
115 template <
typename T>
121 template <
typename T>
127 template <
typename T>
128 const T* target() const noexcept
130 return v.target<T>();
133 template <
typename T>
136 return v.target<T>();
139 template <
typename Visitor>
140 auto apply(Visitor&& vis) ->
decltype(
auto);
142 template <
typename Visitor>
143 auto apply(Visitor&& vis)
const ->
decltype(
auto);
145#include <ossia/editor/curve/behavior_variant_impl.hpp>
147template <
typename Visitor>
148inline auto behavior::apply(Visitor&& vis) ->
decltype(
auto)
150 return ossia::apply(std::forward<Visitor>(vis), this->v);
153template <
typename Visitor>
154inline auto behavior::apply(Visitor&& vis)
const ->
decltype(
auto)
156 return ossia::apply(std::forward<Visitor>(vis), this->v);
159template <
typename Functor>
160auto apply(Functor&& functor,
const behavior& var) ->
decltype(
auto)
162 return ossia::apply(std::forward<Functor>(functor), var.v);
164template <
typename Functor>
165auto apply(Functor&& functor, behavior& var) ->
decltype(
auto)
167 return ossia::apply(std::forward<Functor>(functor), var.v);
169template <
typename Functor>
170auto apply(Functor&& functor, behavior&& var) ->
decltype(
auto)
172 return ossia::apply(std::forward<Functor>(functor), std::move(var.v));
174template <
typename Functor>
175auto apply_nonnull(Functor&& functor,
const behavior& var) ->
decltype(
auto)
177 return ossia::apply_nonnull(std::forward<Functor>(functor), var.v);
179template <
typename Functor>
180auto apply_nonnull(Functor&& functor, behavior& var) ->
decltype(
auto)
182 return ossia::apply_nonnull(std::forward<Functor>(functor), var.v);
184template <
typename Functor>
185auto apply_nonnull(Functor&& functor, behavior&& var) ->
decltype(
auto)
187 return ossia::apply_nonnull(std::forward<Functor>(functor), std::move(var.v));
The curve class.
Definition curve.hpp:59
val_type matching_type(const unit_t &u)
underlying_type Get the implementation type of an unit
Definition dataspace_visitors.cpp:198