summaryrefslogtreecommitdiffstats
path: root/ingen/client/PluginModel.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 /ingen/client/PluginModel.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'ingen/client/PluginModel.hpp')
-rw-r--r--ingen/client/PluginModel.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp
index 61de0f1a..381d289b 100644
--- a/ingen/client/PluginModel.hpp
+++ b/ingen/client/PluginModel.hpp
@@ -32,11 +32,11 @@
#include "raul/Symbol.hpp"
#include "sord/sordmm.hpp"
-namespace Ingen {
+namespace ingen {
class URIs;
-namespace Client {
+namespace client {
class GraphModel;
class BlockModel;
@@ -46,13 +46,13 @@ class PluginUI;
*
* @ingroup IngenClient
*/
-class INGEN_API PluginModel : public Ingen::Resource
+class INGEN_API PluginModel : public ingen::Resource
{
public:
PluginModel(URIs& uris,
const URI& uri,
const Atom& type,
- const Ingen::Properties& properties);
+ const ingen::Properties& properties);
const Atom& type() const { return _type; }
@@ -83,7 +83,7 @@ public:
bool has_ui() const;
- SPtr<PluginUI> ui(Ingen::World* world,
+ SPtr<PluginUI> ui(ingen::World* world,
SPtr<const BlockModel> block) const;
std::string documentation(bool html) const;
@@ -122,7 +122,7 @@ private:
bool _fetched;
};
-} // namespace Client
-} // namespace Ingen
+} // namespace client
+} // namespace ingen
#endif // INGEN_CLIENT_PLUGINMODEL_HPP