summaryrefslogtreecommitdiffstats
path: root/ingen/client/SocketClient.hpp
diff options
context:
space:
mode:
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