summaryrefslogtreecommitdiffstats
path: root/src/gui/App.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-14 20:15:05 +0100
committerDavid Robillard <d@drobilla.net>2020-12-14 22:04:29 +0100
commitd10796d12fd477215fc024078c0f2d83abc6515e (patch)
tree2e317aeca3bbf96adafc83612c1768650d126c9f /src/gui/App.cpp
parent337ca8a63882c43b086f5049cc3c03230953a063 (diff)
downloadingen-d10796d12fd477215fc024078c0f2d83abc6515e.tar.gz
ingen-d10796d12fd477215fc024078c0f2d83abc6515e.tar.bz2
ingen-d10796d12fd477215fc024078c0f2d83abc6515e.zip
Avoid "using namespace"
Diffstat (limited to 'src/gui/App.cpp')
-rw-r--r--src/gui/App.cpp26
1 files changed, 16 insertions, 10 deletions
diff --git a/src/gui/App.cpp b/src/gui/App.cpp
index 55787d44..ecc20455 100644
--- a/src/gui/App.cpp
+++ b/src/gui/App.cpp
@@ -65,8 +65,6 @@ namespace ingen {
namespace client { class PluginModel; }
-using namespace client;
-
namespace gui {
class Port;
@@ -99,11 +97,14 @@ App::App(ingen::World& world)
_about_dialog->property_program_name() = "Ingen";
_about_dialog->property_logo_icon_name() = "ingen";
- PluginModel::set_rdf_world(*world.rdf_world());
- PluginModel::set_lilv_world(world.lilv_world());
+ client::PluginModel::set_rdf_world(*world.rdf_world());
+ client::PluginModel::set_lilv_world(world.lilv_world());
- using namespace std::placeholders;
- world.log().set_sink(std::bind(&MessagesWindow::log, _messages_window, _1, _2, _3));
+ world.log().set_sink(std::bind(&MessagesWindow::log,
+ _messages_window,
+ std::placeholders::_1,
+ std::placeholders::_2,
+ std::placeholders::_3));
}
App::~App()
@@ -171,8 +172,13 @@ App::attach(const std::shared_ptr<ingen::Interface>& client)
}
_client = client;
- _store = std::make_shared<ClientStore>(_world.uris(), _world.log(), sig_client());
+
+ _store = std::make_shared<client::ClientStore>(_world.uris(),
+ _world.log(),
+ sig_client());
+
_loader = std::make_shared<ThreadedLoader>(*this, _world.interface());
+
if (!_world.store()) {
_world.set_store(_store);
}
@@ -215,14 +221,14 @@ App::request_plugins_if_necessary()
}
}
-std::shared_ptr<SigClientInterface>
+std::shared_ptr<client::SigClientInterface>
App::sig_client()
{
auto qi = std::dynamic_pointer_cast<QueuedInterface>(_client);
if (qi) {
- return std::dynamic_pointer_cast<SigClientInterface>(qi->sink());
+ return std::dynamic_pointer_cast<client::SigClientInterface>(qi->sink());
}
- return std::dynamic_pointer_cast<SigClientInterface>(_client);
+ return std::dynamic_pointer_cast<client::SigClientInterface>(_client);
}
std::shared_ptr<Serialiser>