From 91031b8f5a4bf86b39e4c4a02412a16e247f8b15 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 7 Oct 2007 17:34:19 +0000 Subject: Start building a common (client/server) abstract interface for graph objects. git-svn-id: http://svn.drobilla.net/lad/ingen@834 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Node.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libs/engine/Node.hpp') diff --git a/src/libs/engine/Node.hpp b/src/libs/engine/Node.hpp index b1cefe65..083ceea2 100644 --- a/src/libs/engine/Node.hpp +++ b/src/libs/engine/Node.hpp @@ -21,7 +21,7 @@ #include #include #include "types.hpp" -#include "GraphObject.hpp" +#include "GraphObjectImpl.hpp" namespace Raul { template class List; class Maid; } @@ -46,11 +46,11 @@ namespace Shared { class ClientInterface; } * * \ingroup engine */ -class Node : public GraphObject +class Node : public GraphObjectImpl { public: - Node(GraphObject* parent, const std::string& name, bool poly) - : GraphObject(parent, name, poly) + Node(GraphObjectImpl* parent, const std::string& name, bool poly) + : GraphObjectImpl(parent, name, poly) {} virtual ~Node() {} -- cgit v1.2.1