summaryrefslogtreecommitdiffstats
path: root/src/gui/App.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-16 04:13:23 +0000
committerDavid Robillard <d@drobilla.net>2012-03-16 04:13:23 +0000
commit9da093217352daa1fb61a6f2daf5195640e286a7 (patch)
treefb3489c04451dc14a61170ba2418123727414340 /src/gui/App.hpp
parent119468f621a59d86da10bedf75c4427b70f9d370 (diff)
downloadingen-9da093217352daa1fb61a6f2daf5195640e286a7.tar.gz
ingen-9da093217352daa1fb61a6f2daf5195640e286a7.tar.bz2
ingen-9da093217352daa1fb61a6f2daf5195640e286a7.zip
Merge ClientInterface and ServerInterface.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4067 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/App.hpp')
-rw-r--r--src/gui/App.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/App.hpp b/src/gui/App.hpp
index 9953a993..6f2cd592 100644
--- a/src/gui/App.hpp
+++ b/src/gui/App.hpp
@@ -32,8 +32,7 @@
#include "ingen/shared/World.hpp"
namespace Ingen {
- class ClientInterface;
- class ServerInterface;
+ class Interface;
class Port;
namespace Shared {
class World;
@@ -103,7 +102,7 @@ public:
Glib::RefPtr<Gdk::Pixbuf> icon_from_path(const std::string& path, int size);
Raul::Forge& forge() const { return _world->forge(); }
- SharedPtr<Ingen::ServerInterface> engine() const { return _world->engine(); }
+ SharedPtr<Ingen::Interface> engine() const { return _world->engine(); }
SharedPtr<Client::SigClientInterface> client() const { return _client; }
SharedPtr<Client::ClientStore> store() const { return _store; }
SharedPtr<ThreadedLoader> loader() const { return _loader; }