diff options
author | David Robillard <d@drobilla.net> | 2009-05-27 18:22:56 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-27 18:22:56 +0000 |
commit | 0c1576d21588ece4e226da04523f36adac3a14c3 (patch) | |
tree | c7ad62136724b44b654e9d2c08fd20c89473a65f /src/common | |
parent | c11ecf0fd10641218326ae384e80413ba3cdf46c (diff) | |
download | ingen-0c1576d21588ece4e226da04523f36adac3a14c3.tar.gz ingen-0c1576d21588ece4e226da04523f36adac3a14c3.tar.bz2 ingen-0c1576d21588ece4e226da04523f36adac3a14c3.zip |
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
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/interface/CommonInterface.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
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; }; |