summaryrefslogtreecommitdiffstats
path: root/ingen/client/PluginModel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/client/PluginModel.hpp')
-rw-r--r--ingen/client/PluginModel.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp
index e434df07..46e7b116 100644
--- a/ingen/client/PluginModel.hpp
+++ b/ingen/client/PluginModel.hpp
@@ -17,6 +17,9 @@
#ifndef INGEN_CLIENT_PLUGINMODEL_HPP
#define INGEN_CLIENT_PLUGINMODEL_HPP
+#include <list>
+#include <utility>
+
#include "lilv/lilv.h"
#include "raul/SharedPtr.hpp"
#include "raul/Symbol.hpp"
@@ -59,6 +62,10 @@ public:
std::string human_name() const;
std::string port_human_name(uint32_t index) const;
+ typedef std::pair<float, std::string> ScalePoint;
+ typedef std::list<ScalePoint> ScalePoints;
+ ScalePoints port_scale_points(uint32_t i) const;
+
static LilvWorld* lilv_world() { return _lilv_world; }
const LilvPlugin* lilv_plugin() const { return _lilv_plugin; }