diff options
Diffstat (limited to 'src/libs/client/NodeModel.hpp')
-rw-r--r-- | src/libs/client/NodeModel.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libs/client/NodeModel.hpp b/src/libs/client/NodeModel.hpp index 9e26daaa..d50926ae 100644 --- a/src/libs/client/NodeModel.hpp +++ b/src/libs/client/NodeModel.hpp @@ -85,6 +85,9 @@ protected: PortModelList _ports; ///< List of ports (not a Table to preserve order) string _plugin_uri; ///< Plugin URI (if PluginModel is unknown) SharedPtr<PluginModel> _plugin; ///< The plugin this node is an instance of + + float* _min_values; ///< The min values for the node ports (only used for LV2 so far) + float* _max_values; ///< The max values for the node ports (only used for LV2 so far) }; |