2#include <ossia-max/src/node_base.hpp>
11class view :
public node_base
14 using is_view = std::true_type;
16 void do_registration();
19 ossia::safe_set<ossia::net::device_base*> m_devices{};
23 void on_device_created(ossia::max_binding::device_base* device);
24 void on_device_removing(ossia::max_binding::device_base* device);
26 static void* create(t_symbol*,
long, t_atom*);
27 static void destroy(ossia::max_binding::view*);
The node_base class.
Definition node.hpp:48