summaryrefslogtreecommitdiffstats
path: root/include/ingen/SocketWriter.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 18:17:04 +0100
commitf0e33dd09a390ca946e95a6f55fea397dca0ca1f (patch)
tree8d8befb3c7196ae119efc95ed6cdf2ba9cc00c32 /include/ingen/SocketWriter.hpp
parentd2143bb3298d94ebef62ed50d377e89533a02b42 (diff)
downloadingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.gz
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.tar.bz2
ingen-f0e33dd09a390ca946e95a6f55fea397dca0ca1f.zip
Update for latest raul
Diffstat (limited to 'include/ingen/SocketWriter.hpp')
-rw-r--r--include/ingen/SocketWriter.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ingen/SocketWriter.hpp b/include/ingen/SocketWriter.hpp
index 63f2f86f..a0896ad9 100644
--- a/include/ingen/SocketWriter.hpp
+++ b/include/ingen/SocketWriter.hpp
@@ -24,9 +24,9 @@
#include <cstddef>
#include <memory>
-namespace Raul {
+namespace raul {
class Socket;
-} // namespace Raul
+} // namespace raul
namespace ingen {
@@ -42,14 +42,14 @@ public:
SocketWriter(URIMap& map,
URIs& uris,
const URI& uri,
- std::shared_ptr<Raul::Socket> sock);
+ std::shared_ptr<raul::Socket> sock);
void message(const Message& message) override;
size_t text_sink(const void* buf, size_t len) override;
protected:
- std::shared_ptr<Raul::Socket> _socket;
+ std::shared_ptr<raul::Socket> _socket;
};
} // namespace ingen