summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-12 23:52:20 +0000
committerDavid Robillard <d@drobilla.net>2011-05-12 23:52:20 +0000
commiteae8f927dbf4913c7cb72605af5da0763f7be422 (patch)
tree7dc682bc2e3a09a4255f960bcd1aa0c5fdb8f89d
parent2a6d7a49024125870b54039c39ac009266b824d9 (diff)
downloadingen-eae8f927dbf4913c7cb72605af5da0763f7be422.tar.gz
ingen-eae8f927dbf4913c7cb72605af5da0763f7be422.tar.bz2
ingen-eae8f927dbf4913c7cb72605af5da0763f7be422.zip
Remove dead code.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3257 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/client/ObjectModel.cpp6
-rw-r--r--src/client/ObjectModel.hpp1
-rw-r--r--src/server/GraphObjectImpl.cpp12
-rw-r--r--src/server/GraphObjectImpl.hpp2
4 files changed, 0 insertions, 21 deletions
diff --git a/src/client/ObjectModel.cpp b/src/client/ObjectModel.cpp
index 8a378e34..e85742a9 100644
--- a/src/client/ObjectModel.cpp
+++ b/src/client/ObjectModel.cpp
@@ -54,12 +54,6 @@ ObjectModel::set_property(const Raul::URI& key, const Raul::Atom& value)
return ResourceImpl::set_property(key, value);
}
-Raul::Atom&
-ObjectModel::set_meta_property(const Raul::URI& key, const Raul::Atom& value)
-{
- return set_property(key, Resource::Property(value, Resource::INTERNAL));
-}
-
void
ObjectModel::add_property(const Raul::URI& key, const Raul::Atom& value)
{
diff --git a/src/client/ObjectModel.hpp b/src/client/ObjectModel.hpp
index f6610463..21cf4b2b 100644
--- a/src/client/ObjectModel.hpp
+++ b/src/client/ObjectModel.hpp
@@ -59,7 +59,6 @@ public:
Raul::Atom& set_property(const Raul::URI& key, const Raul::Atom& value);
void add_property(const Raul::URI& key, const Raul::Atom& value);
- Raul::Atom& set_meta_property(const Raul::URI& key, const Raul::Atom& value);
const Raul::Path& path() const { return _path; }
const Raul::Symbol& symbol() const { return _symbol; }
diff --git a/src/server/GraphObjectImpl.cpp b/src/server/GraphObjectImpl.cpp
index 334a8caa..f4677e4f 100644
--- a/src/server/GraphObjectImpl.cpp
+++ b/src/server/GraphObjectImpl.cpp
@@ -37,18 +37,6 @@ GraphObjectImpl::GraphObjectImpl(Ingen::Shared::LV2URIMap& uris,
{
}
-void
-GraphObjectImpl::add_meta_property(const Raul::URI& key, const Atom& value)
-{
- add_property(key, Resource::Property(value, Resource::INTERNAL));
-}
-
-void
-GraphObjectImpl::set_meta_property(const Raul::URI& key, const Atom& value)
-{
- set_property(key, Resource::Property(value, Resource::INTERNAL));
-}
-
const Atom&
GraphObjectImpl::get_property(const Raul::URI& key) const
{
diff --git a/src/server/GraphObjectImpl.hpp b/src/server/GraphObjectImpl.hpp
index 6c08c9c4..4ef9ffa7 100644
--- a/src/server/GraphObjectImpl.hpp
+++ b/src/server/GraphObjectImpl.hpp
@@ -70,8 +70,6 @@ public:
}
const Raul::Atom& get_property(const Raul::URI& key) const;
- void add_meta_property(const Raul::URI& key, const Raul::Atom& value);
- void set_meta_property(const Raul::URI& key, const Raul::Atom& value);
/** The Patch this object is a child of. */
virtual PatchImpl* parent_patch() const;