summaryrefslogtreecommitdiffstats
path: root/ingen/client/SocketClient.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/SocketClient.hpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'ingen/client/SocketClient.hpp')
-rw-r--r--ingen/client/SocketClient.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ingen/client/SocketClient.hpp b/ingen/client/SocketClient.hpp
index 8236200b..9703cf29 100644
--- a/ingen/client/SocketClient.hpp
+++ b/ingen/client/SocketClient.hpp
@@ -22,8 +22,8 @@
#include "ingen/ingen.h"
#include "raul/Socket.hpp"
-namespace Ingen {
-namespace Client {
+namespace ingen {
+namespace client {
/** The client side of an Ingen socket connection. */
class INGEN_API SocketClient : public SocketWriter
@@ -46,10 +46,10 @@ public:
_respondee = respondee;
}
- static SPtr<Ingen::Interface>
- new_socket_interface(Ingen::World* world,
+ static SPtr<ingen::Interface>
+ new_socket_interface(ingen::World* world,
const URI& uri,
- SPtr<Ingen::Interface> respondee)
+ SPtr<ingen::Interface> respondee)
{
const Raul::Socket::Type type = (uri.scheme() == "unix"
? Raul::Socket::Type::UNIX
@@ -74,7 +74,7 @@ private:
SocketReader _reader;
};
-} // namespace Client
-} // namespace Ingen
+} // namespace client
+} // namespace ingen
#endif // INGEN_CLIENT_SOCKET_CLIENT_HPP