summaryrefslogtreecommitdiffstats
path: root/ingen/GraphObject.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-07-31 00:14:50 +0000
committerDavid Robillard <d@drobilla.net>2012-07-31 00:14:50 +0000
commit629fb50716083c71146340de97eb8651679ca9fb (patch)
tree9c5f25fdfd24f3cdb89924062f291a6647580878 /ingen/GraphObject.hpp
parent6297b8805c95dd1831ee9a0b9639ae41d00a1473 (diff)
downloadingen-629fb50716083c71146340de97eb8651679ca9fb.tar.gz
ingen-629fb50716083c71146340de97eb8651679ca9fb.tar.bz2
ingen-629fb50716083c71146340de97eb8651679ca9fb.zip
Merge Ingen::Shared namespace into Ingen namespace and core libingen library.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4579 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/GraphObject.hpp')
-rw-r--r--ingen/GraphObject.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/ingen/GraphObject.hpp b/ingen/GraphObject.hpp
index a8bee0b0..80da116e 100644
--- a/ingen/GraphObject.hpp
+++ b/ingen/GraphObject.hpp
@@ -17,10 +17,9 @@
#ifndef INGEN_GRAPHOBJECT_HPP
#define INGEN_GRAPHOBJECT_HPP
-#include "ingen/Resource.hpp"
-#include "raul/Deletable.hpp"
#include "raul/Path.hpp"
#include "raul/SharedPtr.hpp"
+#include "ingen/Resource.hpp"
namespace Raul {
class Atom;
@@ -40,8 +39,6 @@ class Plugin;
class GraphObject : public Resource
{
public:
- virtual void set_path(const Raul::Path& path) = 0;
-
enum GraphType {
PATCH,
NODE,
@@ -67,7 +64,7 @@ public:
virtual GraphObject* graph_parent() const = 0;
protected:
- GraphObject(Shared::URIs& uris, const Raul::Path& path)
+ GraphObject(URIs& uris, const Raul::Path& path)
: Resource(uris, path)
{}