summaryrefslogtreecommitdiffstats
path: root/ingen/Node.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/Node.hpp
parentcbb864b0ff951f75d826d97009681b30cce4da22 (diff)
downloadingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.gz
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.tar.bz2
ingen-d744e4d421c313a3b4d786e11a311f73da19fc41.zip
Clean up includes in public headers
Diffstat (limited to 'ingen/Node.hpp')
-rw-r--r--ingen/Node.hpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/ingen/Node.hpp b/ingen/Node.hpp
index a585d03a..5b2a5ee5 100644
--- a/ingen/Node.hpp
+++ b/ingen/Node.hpp
@@ -17,15 +17,19 @@
#ifndef INGEN_NODE_HPP
#define INGEN_NODE_HPP
+#include <cstdint>
+#include <map>
+#include <string>
+#include <utility>
+
#include "ingen/Resource.hpp"
#include "ingen/ingen.h"
#include "ingen/paths.hpp"
#include "ingen/types.hpp"
#include "lilv/lilv.h"
-#include "raul/Path.hpp"
+#include "raul/URI.hpp"
namespace Raul {
-class Atom;
class Path;
class Symbol;
}
@@ -34,6 +38,7 @@ namespace Ingen {
class Arc;
class Store;
+class URIs;
/** A node in the audio graph.
*
@@ -65,11 +70,11 @@ public:
// Blocks and graphs only
virtual uint32_t num_ports() const { return 0; }
- virtual Node* port(uint32_t index) const { return NULL; }
- virtual const Resource* plugin() const { return NULL; }
+ virtual Node* port(uint32_t index) const { return nullptr; }
+ virtual const Resource* plugin() const { return nullptr; }
// Plugin blocks only
- virtual LilvInstance* instance() { return NULL; }
+ virtual LilvInstance* instance() { return nullptr; }
virtual bool save_state(const std::string& dir) const { return false; }
// All objects