summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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;