summaryrefslogtreecommitdiffstats
path: root/src/server/events/CreateGraph.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
commit394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch)
tree1c079badda98cb366d72d59aabcb68fcc38760cf /src/server/events/CreateGraph.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/server/events/CreateGraph.cpp')
-rw-r--r--src/server/events/CreateGraph.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/server/events/CreateGraph.cpp b/src/server/events/CreateGraph.cpp
index 390fdd9a..27781cbc 100644
--- a/src/server/events/CreateGraph.cpp
+++ b/src/server/events/CreateGraph.cpp
@@ -27,9 +27,9 @@
#include "events/CreateGraph.hpp"
#include "events/CreatePort.hpp"
-namespace Ingen {
-namespace Server {
-namespace Events {
+namespace ingen {
+namespace server {
+namespace events {
CreateGraph::CreateGraph(Engine& engine,
SPtr<Interface> client,
@@ -54,7 +54,7 @@ CreateGraph::~CreateGraph()
void
CreateGraph::build_child_events()
{
- const Ingen::URIs& uris = _engine.world()->uris();
+ const ingen::URIs& uris = _engine.world()->uris();
// Properties common to both ports
Properties control_properties;
@@ -76,7 +76,7 @@ CreateGraph::build_child_events()
Resource::Graph::EXTERNAL);
_child_events.push_back(
- new Events::CreatePort(
+ new events::CreatePort(
_engine, _request_client, -1, _time,
_path.child(Raul::Symbol("control")),
in_properties));
@@ -92,7 +92,7 @@ CreateGraph::build_child_events()
Resource::Graph::EXTERNAL);
_child_events.push_back(
- new Events::CreatePort(_engine, _request_client, -1, _time,
+ new events::CreatePort(_engine, _request_client, -1, _time,
_path.child(Raul::Symbol("notify")),
out_properties));
}
@@ -111,7 +111,7 @@ CreateGraph::pre_process(PreProcessContext& ctx)
}
}
- const Ingen::URIs& uris = _engine.world()->uris();
+ const ingen::URIs& uris = _engine.world()->uris();
typedef Properties::const_iterator iterator;
@@ -231,6 +231,6 @@ CreateGraph::undo(Interface& target)
target.del(_graph->uri());
}
-} // namespace Events
-} // namespace Server
-} // namespace Ingen
+} // namespace events
+} // namespace server
+} // namespace ingen