summaryrefslogtreecommitdiffstats
path: root/ingen/AtomWriter.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/AtomWriter.hpp
parentcbb864b0ff951f75d826d97009681b30cce4da22 (diff)
downloadingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.gz
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.bz2
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.zip
Clean up includes in public headers
Diffstat (limited to 'ingen/AtomWriter.hpp')
-rw-r--r--ingen/AtomWriter.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/ingen/AtomWriter.hpp b/ingen/AtomWriter.hpp
index 2366df05..1022dfcb 100644
--- a/ingen/AtomWriter.hpp
+++ b/ingen/AtomWriter.hpp
@@ -17,18 +17,25 @@
#ifndef INGEN_ATOMWRITER_HPP
#define INGEN_ATOMWRITER_HPP
-#include <string>
+#include <cstdint>
#include "ingen/AtomForgeSink.hpp"
#include "ingen/Interface.hpp"
-#include "ingen/URIs.hpp"
+#include "ingen/Message.hpp"
+#include "ingen/Properties.hpp"
+#include "ingen/Resource.hpp"
#include "ingen/ingen.h"
#include "lv2/lv2plug.in/ns/ext/atom/forge.h"
+#include "lv2/lv2plug.in/ns/ext/urid/urid.h"
+#include "raul/URI.hpp"
+
+namespace Raul { class Path; }
namespace Ingen {
class AtomSink;
class URIMap;
+class URIs;
/** An Interface that writes LV2 atoms to an AtomSink. */
class INGEN_API AtomWriter : public Interface