summaryrefslogtreecommitdiffstats
path: root/src/server/Engine.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 /src/server/Engine.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 'src/server/Engine.hpp')
-rw-r--r--src/server/Engine.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/Engine.hpp b/src/server/Engine.hpp
index 4ee14988..c4290d60 100644
--- a/src/server/Engine.hpp
+++ b/src/server/Engine.hpp
@@ -30,7 +30,7 @@ namespace Raul { class Maid; }
namespace Ingen {
-namespace Shared { class World; }
+class World;
namespace Server {
@@ -54,14 +54,14 @@ class Worker;
This is a simple class that provides pointers to the various components
that make up the engine implementation. In processes with a local engine,
- it can be accessed via the Ingen::Shared::World.
+ it can be accessed via the Ingen::World.
@ingroup engine
*/
class Engine : public boost::noncopyable, public EngineBase
{
public:
- explicit Engine(Ingen::Shared::World* world);
+ explicit Engine(Ingen::World* world);
virtual ~Engine();
@@ -91,7 +91,7 @@ public:
return &context == &_process_context;
}
- Ingen::Shared::World* world() const { return _world; }
+ Ingen::World* world() const { return _world; }
EventWriter* interface() const { return _event_writer; }
Broadcaster* broadcaster() const { return _broadcaster; }
@@ -112,7 +112,7 @@ public:
size_t event_queue_size() const;
private:
- Ingen::Shared::World* _world;
+ Ingen::World* _world;
Broadcaster* _broadcaster;
BufferFactory* _buffer_factory;