summaryrefslogtreecommitdiffstats
path: root/src/server/PluginImpl.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/PluginImpl.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/server/PluginImpl.hpp')
-rw-r--r--src/server/PluginImpl.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/server/PluginImpl.hpp b/src/server/PluginImpl.hpp
index ebd4b3e5..fd1fcc66 100644
--- a/src/server/PluginImpl.hpp
+++ b/src/server/PluginImpl.hpp
@@ -22,11 +22,11 @@
#include "ingen/Resource.hpp"
#include "raul/Symbol.hpp"
-namespace Ingen {
+namespace ingen {
class URIs;
-namespace Server {
+namespace server {
class BlockImpl;
class BufferFactory;
@@ -40,7 +40,7 @@ class GraphImpl;
class PluginImpl : public Resource
{
public:
- PluginImpl(Ingen::URIs& uris, const Atom& type, const URI& uri)
+ PluginImpl(ingen::URIs& uris, const Atom& type, const URI& uri)
: Resource(uris, uri)
, _type(type)
, _presets_loaded(false)
@@ -90,7 +90,7 @@ private:
PluginImpl& operator=(const PluginImpl&) = delete;
};
-} // namespace Server
-} // namespace Ingen
+} // namespace server
+} // namespace ingen
#endif // INGEN_ENGINE_PLUGINIMPL_HPP