summaryrefslogtreecommitdiffstats
path: root/src/server/events/Delta.hpp
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/Delta.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/server/events/Delta.hpp')
-rw-r--r--src/server/events/Delta.hpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/server/events/Delta.hpp b/src/server/events/Delta.hpp
index af337b57..b3bb0537 100644
--- a/src/server/events/Delta.hpp
+++ b/src/server/events/Delta.hpp
@@ -28,17 +28,17 @@
#include "Event.hpp"
#include "PluginImpl.hpp"
-namespace Ingen {
+namespace ingen {
class Resource;
-namespace Server {
+namespace server {
class Engine;
class GraphImpl;
class RunContext;
-namespace Events {
+namespace events {
class SetPortValue;
@@ -51,17 +51,17 @@ public:
Delta(Engine& engine,
SPtr<Interface> client,
SampleCount timestamp,
- const Ingen::Put& msg);
+ const ingen::Put& msg);
Delta(Engine& engine,
SPtr<Interface> client,
SampleCount timestamp,
- const Ingen::Delta& msg);
+ const ingen::Delta& msg);
Delta(Engine& engine,
SPtr<Interface> client,
SampleCount timestamp,
- const Ingen::SetProperty& msg);
+ const ingen::SetProperty& msg);
~Delta();
@@ -108,7 +108,7 @@ private:
Properties _properties;
Properties _remove;
ClientUpdate _update;
- Ingen::Resource* _object;
+ ingen::Resource* _object;
GraphImpl* _graph;
MPtr<CompiledGraph> _compiled_graph;
ControlBindings::Binding* _binding;
@@ -126,8 +126,8 @@ private:
bool _block;
};
-} // namespace Events
-} // namespace Server
-} // namespace Ingen
+} // namespace events
+} // namespace server
+} // namespace ingen
#endif // INGEN_EVENTS_DELTA_HPP