summaryrefslogtreecommitdiffstats
path: root/src/server
diff options
context:
space:
mode:
Diffstat (limited to 'src/server')
-rw-r--r--src/server/GraphObjectImpl.cpp12
-rw-r--r--src/server/GraphObjectImpl.hpp2
2 files changed, 0 insertions, 14 deletions
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;