summaryrefslogtreecommitdiffstats
path: root/ingen/AtomReader.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/AtomReader.hpp
parentcbb864b0ff951f75d826d97009681b30cce4da22 (diff)
downloadingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.gz
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.bz2
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.zip
Clean up includes in public headers
Diffstat (limited to 'ingen/AtomReader.hpp')
-rw-r--r--ingen/AtomReader.hpp18
1 files changed, 14 insertions, 4 deletions
diff --git a/ingen/AtomReader.hpp b/ingen/AtomReader.hpp
index bcfe9ab5..a482627b 100644
--- a/ingen/AtomReader.hpp
+++ b/ingen/AtomReader.hpp
@@ -17,18 +17,28 @@
#ifndef INGEN_ATOMREADER_HPP
#define INGEN_ATOMREADER_HPP
-#include <boost/optional.hpp>
+#include <cstdint>
+
+#include <boost/optional/optional.hpp>
-#include "ingen/Interface.hpp"
#include "ingen/AtomSink.hpp"
-#include "ingen/URIs.hpp"
+#include "ingen/Resource.hpp"
#include "ingen/ingen.h"
+#include "lv2/lv2plug.in/ns/ext/atom/atom.h"
+
+namespace Raul {
+class Path;
+class URI;
+}
namespace Ingen {
-class AtomSink;
+class Atom;
+class Interface;
class Log;
+class Properties;
class URIMap;
+class URIs;
/** An AtomSink that calls methods on an Interface.
* @ingroup IngenShared