From 0c1576d21588ece4e226da04523f36adac3a14c3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 27 May 2009 18:22:56 +0000 Subject: Rename 'destroy' 'delete' ('del' in code) (WebDAV DELETE). Rename 'rename' 'move' (WebDAV MOVE). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2012 a436a847-0d15-0410-975c-d299462d15a1 --- src/common/interface/CommonInterface.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/common/interface') diff --git a/src/common/interface/CommonInterface.hpp b/src/common/interface/CommonInterface.hpp index 3c81a4a3..89a96978 100644 --- a/src/common/interface/CommonInterface.hpp +++ b/src/common/interface/CommonInterface.hpp @@ -48,8 +48,10 @@ public: virtual void put(const Raul::Path& path, const Resource::Properties& properties) = 0; - virtual void rename(const Raul::Path& old_path, - const Raul::Path& new_path) = 0; + virtual void move(const Raul::Path& old_path, + const Raul::Path& new_path) = 0; + + virtual void del(const Raul::Path& path) = 0; virtual void connect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path) = 0; @@ -72,8 +74,6 @@ public: uint32_t voice, const Raul::Atom& value) = 0; - virtual void destroy(const Raul::Path& path) = 0; - virtual void clear_patch(const Raul::Path& patch_path) = 0; }; -- cgit v1.2.1