From 8ba6bb943889bfdd58cf4a971a152041c1199cfe Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 18 Apr 2011 12:47:15 +0000 Subject: Put engine code in new Ingen::Engine namespace. Put core interfaces in Ingen namespace (not Ingen::Shared). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3159 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/GraphObjectImpl.hpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/engine/GraphObjectImpl.hpp') diff --git a/src/engine/GraphObjectImpl.hpp b/src/engine/GraphObjectImpl.hpp index 66b38af1..88e18ff4 100644 --- a/src/engine/GraphObjectImpl.hpp +++ b/src/engine/GraphObjectImpl.hpp @@ -34,6 +34,8 @@ namespace Ingen { namespace Shared { class LV2URIMap; } +namespace Engine { + class PatchImpl; class Context; class ProcessContext; @@ -47,7 +49,7 @@ class BufferFactory; * * \ingroup engine */ -class GraphObjectImpl : virtual public Ingen::Shared::GraphObject +class GraphObjectImpl : virtual public GraphObject , public Ingen::Shared::ResourceImpl { public: @@ -96,14 +98,16 @@ public: virtual bool apply_poly(Raul::Maid& maid, uint32_t poly) = 0; protected: - GraphObjectImpl(Shared::LV2URIMap& uris, - GraphObjectImpl* parent, const Raul::Symbol& symbol); + GraphObjectImpl(Ingen::Shared::LV2URIMap& uris, + GraphObjectImpl* parent, + const Raul::Symbol& symbol); GraphObjectImpl* _parent; Raul::Path _path; Raul::Symbol _symbol; }; +} // namespace Engine } // namespace Ingen #endif // INGEN_ENGINE_GRAPHOBJECTIMPL_HPP -- cgit v1.2.1