diff options
author | David Robillard <d@drobilla.net> | 2018-09-23 17:31:12 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-23 17:31:12 +0200 |
commit | 394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch) | |
tree | 1c079badda98cb366d72d59aabcb68fcc38760cf /ingen/Module.hpp | |
parent | 367f7c57028ce05f3d765fed678a64ad54a73312 (diff) | |
download | ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2 ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip |
Use lowercase namespace names
Diffstat (limited to 'ingen/Module.hpp')
-rw-r--r-- | ingen/Module.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ingen/Module.hpp b/ingen/Module.hpp index df47b70b..405f4fa1 100644 --- a/ingen/Module.hpp +++ b/ingen/Module.hpp @@ -23,7 +23,7 @@ #include "ingen/Library.hpp" #include "ingen/ingen.h" -namespace Ingen { +namespace ingen { class World; @@ -40,8 +40,8 @@ public: Module(const Module&) = delete; Module& operator=(const Module&) = delete; - virtual void load(Ingen::World* world) = 0; - virtual void run(Ingen::World* world) {} + virtual void load(ingen::World* world) = 0; + virtual void run(ingen::World* world) {} /** Library implementing this module. * @@ -52,12 +52,12 @@ public: std::unique_ptr<Library> library; }; -} // namespace Ingen +} // namespace ingen extern "C" { /** Prototype for the ingen_module_load() entry point in an ingen module. */ -INGEN_API Ingen::Module* ingen_module_load(); +INGEN_API ingen::Module* ingen_module_load(); } |