Loading...
Searching...
No Matches
BaseCallbackWrapper.hpp
1#pragma once
2#include <LocalTree/BaseProperty.hpp>
3
4#include <ossia/network/base/parameter.hpp>
5
6#include <score_lib_localtree_export.h>
7
8namespace LocalTree
9{
10class SCORE_LIB_LOCALTREE_EXPORT BaseCallbackWrapper : public BaseProperty
11{
12public:
13 using BaseProperty::BaseProperty;
14 ~BaseCallbackWrapper() override = default;
15
16 ossia::net::parameter_base::callback_index callbackIt{};
17};
18}
Definition BaseCallbackWrapper.hpp:11
Local tree provides a way to extend the tree given through the Engine::Network::LocalDevice.
Definition BaseCallbackWrapper.hpp:9
Definition BaseProperty.hpp:12