summaryrefslogtreecommitdiffstats
path: root/ingen/Store.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/Store.hpp
parentcbb864b0ff951f75d826d97009681b30cce4da22 (diff)
downloadingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.gz
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.bz2
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.zip
Clean up includes in public headers
Diffstat (limited to 'ingen/Store.hpp')
-rw-r--r--ingen/Store.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/ingen/Store.hpp b/ingen/Store.hpp
index d9a52102..f439c523 100644
--- a/ingen/Store.hpp
+++ b/ingen/Store.hpp
@@ -17,17 +17,23 @@
#ifndef INGEN_STORE_HPP
#define INGEN_STORE_HPP
+#include <cstddef>
#include <map>
#include <mutex>
+#include <utility>
-#include "ingen/Node.hpp"
#include "ingen/ingen.h"
#include "ingen/types.hpp"
#include "raul/Deletable.hpp"
#include "raul/Noncopyable.hpp"
+#include "raul/Path.hpp"
+
+namespace Raul { class Symbol; }
namespace Ingen {
+class Node;
+
/** Store of objects in the graph hierarchy.
* @ingroup IngenShared
*/