summaryrefslogtreecommitdiffstats
path: root/ingen/SocketWriter.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-24 09:20:16 -0500
committerDavid Robillard <d@drobilla.net>2017-12-24 09:20:16 -0500
commitd744e4d421c313a3b4d786e11a311f73da19fc41 (patch)
treeb6bd398d35329dfa7264d9b8dade856fc5d46329 /ingen/SocketWriter.hpp
parentcbb864b0ff951f75d826d97009681b30cce4da22 (diff)
downloadingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.gz
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.bz2
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.zip
Clean up includes in public headers
Diffstat (limited to 'ingen/SocketWriter.hpp')
-rw-r--r--ingen/SocketWriter.hpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/ingen/SocketWriter.hpp b/ingen/SocketWriter.hpp
index e8b522f6..7523cd22 100644
--- a/ingen/SocketWriter.hpp
+++ b/ingen/SocketWriter.hpp
@@ -17,13 +17,22 @@
#ifndef INGEN_SOCKET_WRITER_HPP
#define INGEN_SOCKET_WRITER_HPP
-#include <stdint.h>
+#include <cstddef>
+#include <cstdint>
#include "ingen/TurtleWriter.hpp"
-#include "raul/Socket.hpp"
+#include "ingen/ingen.h"
+
+namespace Raul {
+class Socket;
+class URI;
+}
namespace Ingen {
+class URIMap;
+class URIs;
+
/** An Interface that writes Turtle messages to a socket.
*/
class INGEN_API SocketWriter : public TurtleWriter