3#include <ossia/network/base/node.hpp>
4#include <ossia/network/base/value_callback.hpp>
5#include <ossia/network/value/value.hpp>
21 matcher(
const matcher&) =
delete;
22 matcher(matcher&& other) =
delete;
23 matcher& operator=(
const matcher&) =
delete;
24 matcher& operator=(matcher&& other) =
delete;
27 void remove_callback();
30 object_base* get_owner()
const
34 const t_atom* get_atom_addr_ptr()
const {
return &m_addr; }
35 void set_addr_symbol();
37 inline bool operator==(
const matcher& rhs) {
return (get_node() == rhs.node); }
39 void set_dead() { m_dead =
true; }
40 void set_zombie() { m_zombie =
true; }
41 bool is_zombie()
const {
return m_zombie; }
42 bool is_locked()
const {
return m_lock; }
43 bool is_dead()
const {
return m_dead; }
55 std::optional<ossia::callback_container<ossia::value_callback>::iterator> callbackit
The node_base class.
Definition node.hpp:48
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
The value class.
Definition value.hpp:173