summaryrefslogtreecommitdiffstats
path: root/src/common/interface/CommonInterface.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/interface/CommonInterface.hpp')
-rw-r--r--src/common/interface/CommonInterface.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/common/interface/CommonInterface.hpp b/src/common/interface/CommonInterface.hpp
index f8a71b94..1f760a3e 100644
--- a/src/common/interface/CommonInterface.hpp
+++ b/src/common/interface/CommonInterface.hpp
@@ -21,7 +21,7 @@
#include <inttypes.h>
#include <string>
#include <raul/SharedPtr.hpp>
-#include "interface/ClientInterface.hpp"
+#include <raul/Atom.hpp>
#include "interface/CommonInterface.hpp"
namespace Ingen {
@@ -61,8 +61,12 @@ public:
const std::string& predicate,
const Raul::Atom& value) = 0;
-protected:
- CommonInterface() {}
+ virtual void set_port_value(const std::string& port_path,
+ const Raul::Atom& value) = 0;
+
+ virtual void set_voice_value(const std::string& port_path,
+ uint32_t voice,
+ const Raul::Atom& value) = 0;
};