summaryrefslogtreecommitdiffstats
path: root/src/server/events/Get.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/Get.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/server/events/Get.hpp')
-rw-r--r--src/server/events/Get.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/server/events/Get.hpp b/src/server/events/Get.hpp
index 7392550f..0cfbfe43 100644
--- a/src/server/events/Get.hpp
+++ b/src/server/events/Get.hpp
@@ -24,15 +24,15 @@
#include "Event.hpp"
#include "types.hpp"
-namespace Ingen {
-namespace Server {
+namespace ingen {
+namespace server {
class BlockImpl;
class GraphImpl;
class PluginImpl;
class PortImpl;
-namespace Events {
+namespace events {
/** A request from a client to send an object.
*
@@ -44,22 +44,22 @@ public:
Get(Engine& engine,
SPtr<Interface> client,
SampleCount timestamp,
- const Ingen::Get& msg);
+ const ingen::Get& msg);
bool pre_process(PreProcessContext& ctx);
void execute(RunContext& context) {}
void post_process();
private:
- const Ingen::Get _msg;
+ const ingen::Get _msg;
const Node* _object;
PluginImpl* _plugin;
BlockFactory::Plugins _plugins;
ClientUpdate _response;
};
-} // namespace Events
-} // namespace Server
-} // namespace Ingen
+} // namespace events
+} // namespace server
+} // namespace ingen
#endif // INGEN_EVENTS_GET_HPP