summaryrefslogtreecommitdiffstats
path: root/src/server/Driver.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
commitf0e33dd09a390ca946e95a6f55fea397dca0ca1f (patch)
tree8d8befb3c7196ae119efc95ed6cdf2ba9cc00c32 /src/server/Driver.hpp
parentd2143bb3298d94ebef62ed50d377e89533a02b42 (diff)
downloadingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip
Update for latest raul
Diffstat (limited to 'src/server/Driver.hpp')
-rw-r--r--src/server/Driver.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/Driver.hpp b/src/server/Driver.hpp
index 59720882..1bc6213d 100644
--- a/src/server/Driver.hpp
+++ b/src/server/Driver.hpp
@@ -24,7 +24,7 @@
#include <cstddef>
-namespace Raul { class Path; }
+namespace raul { class Path; }
namespace ingen {
@@ -44,7 +44,7 @@ class RunContext;
*
* \ingroup engine
*/
-class Driver : public Raul::Noncopyable {
+class Driver : public raul::Noncopyable {
public:
virtual ~Driver() = default;
@@ -60,7 +60,7 @@ public:
virtual EnginePort* create_port(DuplexPort* graph_port) = 0;
/** Find a system port by path. */
- virtual EnginePort* get_port(const Raul::Path& path) = 0;
+ virtual EnginePort* get_port(const raul::Path& path) = 0;
/** Add a system visible port (e.g. a port on the root graph). */
virtual void add_port(RunContext& ctx, EnginePort* port) = 0;
@@ -83,11 +83,11 @@ public:
virtual void unregister_port(EnginePort& port) = 0;
/** Rename a system visible port. */
- virtual void rename_port(const Raul::Path& old_path,
- const Raul::Path& new_path) = 0;
+ virtual void rename_port(const raul::Path& old_path,
+ const raul::Path& new_path) = 0;
/** Apply a system visible port property. */
- virtual void port_property(const Raul::Path& path,
+ virtual void port_property(const raul::Path& path,
const URI& uri,
const Atom& value) = 0;