summaryrefslogtreecommitdiffstats
path: root/src/engine/EngineStore.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
commit5268059f5d4ca9325a78da688a7622898354215a (patch)
treeebf19a912d4bf98966b3bf7c289059b0644bf47e /src/engine/EngineStore.hpp
parent19928bb583e72802746b89e322f71ecc0fcb7427 (diff)
downloadingen-5268059f5d4ca9325a78da688a7622898354215a.tar.gz
ingen-5268059f5d4ca9325a78da688a7622898354215a.tar.bz2
ingen-5268059f5d4ca9325a78da688a7622898354215a.zip
Remove 'using' declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1993 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/EngineStore.hpp')
-rw-r--r--src/engine/EngineStore.hpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/engine/EngineStore.hpp b/src/engine/EngineStore.hpp
index 7786f596..a6782501 100644
--- a/src/engine/EngineStore.hpp
+++ b/src/engine/EngineStore.hpp
@@ -22,9 +22,6 @@
#include "raul/SharedPtr.hpp"
#include "shared/Store.hpp"
-using std::string;
-using namespace Raul;
-
namespace Ingen {
namespace Shared { class GraphObject; }
@@ -47,17 +44,17 @@ class GraphObjectImpl;
class EngineStore : public Shared::Store
{
public:
- PatchImpl* find_patch(const Path& path);
- NodeImpl* find_node(const Path& path);
- PortImpl* find_port(const Path& path);
- GraphObjectImpl* find_object(const Path& path);
+ PatchImpl* find_patch(const Raul::Path& path);
+ NodeImpl* find_node(const Raul::Path& path);
+ PortImpl* find_port(const Raul::Path& path);
+ GraphObjectImpl* find_object(const Raul::Path& path);
void add(Shared::GraphObject* o);
void add(const Objects& family);
- SharedPtr<Objects> remove(const Path& path);
+ SharedPtr<Objects> remove(const Raul::Path& path);
SharedPtr<Objects> remove(Objects::iterator i);
- SharedPtr<Objects> remove_children(const Path& path);
+ SharedPtr<Objects> remove_children(const Raul::Path& path);
SharedPtr<Objects> remove_children(Objects::iterator i);
};