summaryrefslogtreecommitdiffstats
path: root/src/shared/ClashAvoider.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/shared/ClashAvoider.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/shared/ClashAvoider.cpp')
-rw-r--r--src/shared/ClashAvoider.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/shared/ClashAvoider.cpp b/src/shared/ClashAvoider.cpp
index 9009fe96..8ac78422 100644
--- a/src/shared/ClashAvoider.cpp
+++ b/src/shared/ClashAvoider.cpp
@@ -27,7 +27,6 @@ using namespace Raul;
namespace Ingen {
namespace Shared {
-
const URI
ClashAvoider::map_uri(const Raul::URI& in)
{
@@ -37,7 +36,6 @@ ClashAvoider::map_uri(const Raul::URI& in)
return in;
}
-
const Path
ClashAvoider::map_path(const Raul::Path& in)
{
@@ -130,7 +128,6 @@ ClashAvoider::map_path(const Raul::Path& in)
}
}
-
bool
ClashAvoider::exists(const Raul::Path& path) const
{
@@ -144,7 +141,6 @@ ClashAvoider::exists(const Raul::Path& path) const
return false;
}
-
void
ClashAvoider::put(const Raul::URI& path,
const Shared::Resource::Properties& properties,
@@ -153,7 +149,6 @@ ClashAvoider::put(const Raul::URI& path,
_target.put(map_uri(path), properties, ctx);
}
-
void
ClashAvoider::delta(const Raul::URI& path,
const Shared::Resource::Properties& remove,
@@ -162,7 +157,6 @@ ClashAvoider::delta(const Raul::URI& path,
_target.delta(map_uri(path), remove, add);
}
-
void
ClashAvoider::move(const Raul::Path& old_path,
const Raul::Path& new_path)
@@ -170,7 +164,6 @@ ClashAvoider::move(const Raul::Path& old_path,
_target.move(map_path(old_path), map_path(new_path));
}
-
void
ClashAvoider::connect(const Raul::Path& src_port_path,
const Raul::Path& dst_port_path)
@@ -178,7 +171,6 @@ ClashAvoider::connect(const Raul::Path& src_port_path,
_target.connect(map_path(src_port_path), map_path(dst_port_path));
}
-
void
ClashAvoider::disconnect(const Raul::Path& src_port_path,
const Raul::Path& dst_port_path)
@@ -186,7 +178,6 @@ ClashAvoider::disconnect(const Raul::Path& src_port_path,
_target.disconnect(map_path(src_port_path), map_path(dst_port_path));
}
-
void
ClashAvoider::set_property(const Raul::URI& subject,
const Raul::URI& predicate,
@@ -195,13 +186,11 @@ ClashAvoider::set_property(const Raul::URI& subject,
_target.set_property(map_uri(subject), predicate, value);
}
-
void
ClashAvoider::del(const Raul::Path& path)
{
_target.del(map_path(path));
}
-
} // namespace Shared
} // namespace Ingen