Loading...
Searching...
No Matches
BaseProperty.hpp
1#pragma once
2#include <score_lib_localtree_export.h>
3
4namespace ossia::net
5{
6class parameter_base;
7}
8
9namespace LocalTree
10{
11struct SCORE_LIB_LOCALTREE_EXPORT BaseProperty
12{
13 ossia::net::parameter_base& addr;
14 explicit BaseProperty(ossia::net::parameter_base& a)
15 : addr{a}
16 {
17 }
18 virtual ~BaseProperty();
19};
20}
Local tree provides a way to extend the tree given through the Engine::Network::LocalDevice.
Definition BaseCallbackWrapper.hpp:9
Definition BaseProperty.hpp:12