summaryrefslogtreecommitdiffstats
path: root/src/server
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-15 18:23:39 +0000
committerDavid Robillard <d@drobilla.net>2012-08-15 18:23:39 +0000
commitd64815e24c043ac87b1504c5f02e93b11c4d8285 (patch)
tree3ca5a42c9ecaac0ecc9129021d390028243515dc /src/server
parent936441d0c850a3b5e8550cb572c4d759589de923 (diff)
downloadingen-d64815e24c043ac87b1504c5f02e93b11c4d8285.tar.gz
ingen-d64815e24c043ac87b1504c5f02e93b11c4d8285.tar.bz2
ingen-d64815e24c043ac87b1504c5f02e93b11c4d8285.zip
Clean up includes.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4704 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server')
-rw-r--r--src/server/DuplexPort.cpp2
-rw-r--r--src/server/GraphObjectImpl.cpp2
-rw-r--r--src/server/GraphObjectImpl.hpp1
-rw-r--r--src/server/InputPort.hpp1
-rw-r--r--src/server/InternalPlugin.cpp3
-rw-r--r--src/server/InternalPlugin.hpp1
-rw-r--r--src/server/LV2Node.cpp1
-rw-r--r--src/server/LV2Plugin.hpp1
-rw-r--r--src/server/NodeFactory.cpp2
-rw-r--r--src/server/OutputPort.hpp1
-rw-r--r--src/server/PatchImpl.cpp1
-rw-r--r--src/server/PluginImpl.hpp1
-rw-r--r--src/server/PortImpl.hpp1
-rw-r--r--src/server/internals/Controller.cpp2
-rw-r--r--src/server/internals/Controller.hpp1
-rw-r--r--src/server/internals/Delay.cpp1
-rw-r--r--src/server/internals/Delay.hpp4
-rw-r--r--src/server/internals/Note.cpp1
-rw-r--r--src/server/internals/Note.hpp3
-rw-r--r--src/server/internals/Trigger.cpp1
-rw-r--r--src/server/internals/Trigger.hpp1
-rw-r--r--src/server/util.hpp1
22 files changed, 5 insertions, 28 deletions
diff --git a/src/server/DuplexPort.cpp b/src/server/DuplexPort.cpp
index f4bf6915..f28831ff 100644
--- a/src/server/DuplexPort.cpp
+++ b/src/server/DuplexPort.cpp
@@ -14,8 +14,6 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <string>
-
#include "ingen/URIs.hpp"
#include "Buffer.hpp"
diff --git a/src/server/GraphObjectImpl.cpp b/src/server/GraphObjectImpl.cpp
index cdb299ee..447e859c 100644
--- a/src/server/GraphObjectImpl.cpp
+++ b/src/server/GraphObjectImpl.cpp
@@ -14,8 +14,6 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <string>
-
#include "raul/log.hpp"
#include "GraphObjectImpl.hpp"
diff --git a/src/server/GraphObjectImpl.hpp b/src/server/GraphObjectImpl.hpp
index 4f2dcbc2..bfc97fb1 100644
--- a/src/server/GraphObjectImpl.hpp
+++ b/src/server/GraphObjectImpl.hpp
@@ -20,7 +20,6 @@
#include <cassert>
#include <cstddef>
#include <map>
-#include <string>
#include "ingen/GraphObject.hpp"
#include "ingen/Resource.hpp"
diff --git a/src/server/InputPort.hpp b/src/server/InputPort.hpp
index f26ad78e..d4d565af 100644
--- a/src/server/InputPort.hpp
+++ b/src/server/InputPort.hpp
@@ -19,7 +19,6 @@
#include <cassert>
#include <cstdlib>
-#include <string>
#include <boost/intrusive/slist.hpp>
diff --git a/src/server/InternalPlugin.cpp b/src/server/InternalPlugin.cpp
index db43558c..60a5699c 100644
--- a/src/server/InternalPlugin.cpp
+++ b/src/server/InternalPlugin.cpp
@@ -15,12 +15,13 @@
*/
#include <cassert>
-#include <string>
+
#include "ingen/URIs.hpp"
#include "internals/Controller.hpp"
#include "internals/Delay.hpp"
#include "internals/Note.hpp"
#include "internals/Trigger.hpp"
+
#include "Driver.hpp"
#include "Engine.hpp"
#include "InternalPlugin.hpp"
diff --git a/src/server/InternalPlugin.hpp b/src/server/InternalPlugin.hpp
index 59ba6d5a..bb90f5e6 100644
--- a/src/server/InternalPlugin.hpp
+++ b/src/server/InternalPlugin.hpp
@@ -18,7 +18,6 @@
#define INGEN_ENGINE_INTERNALPLUGIN_HPP
#include <cstdlib>
-#include <string>
#include <boost/utility.hpp>
#include <glibmm/module.h>
diff --git a/src/server/LV2Node.cpp b/src/server/LV2Node.cpp
index 16890e6f..c1951baa 100644
--- a/src/server/LV2Node.cpp
+++ b/src/server/LV2Node.cpp
@@ -18,7 +18,6 @@
#include <cassert>
#include <cmath>
-#include <string>
#include "lv2/lv2plug.in/ns/ext/resize-port/resize-port.h"
#include "lv2/lv2plug.in/ns/ext/morph/morph.h"
diff --git a/src/server/LV2Plugin.hpp b/src/server/LV2Plugin.hpp
index 8e8effab..226d61ab 100644
--- a/src/server/LV2Plugin.hpp
+++ b/src/server/LV2Plugin.hpp
@@ -18,7 +18,6 @@
#define INGEN_ENGINE_LV2PLUGIN_HPP
#include <cstdlib>
-#include <string>
#include "lilv/lilv.h"
#include "raul/SharedPtr.hpp"
diff --git a/src/server/NodeFactory.cpp b/src/server/NodeFactory.cpp
index 17c0bb79..5f525434 100644
--- a/src/server/NodeFactory.cpp
+++ b/src/server/NodeFactory.cpp
@@ -16,8 +16,6 @@
#include <stdlib.h>
-#include <string>
-
#include "lilv/lilv.h"
#include "internals/Controller.hpp"
diff --git a/src/server/OutputPort.hpp b/src/server/OutputPort.hpp
index d2e6672e..2156c2ab 100644
--- a/src/server/OutputPort.hpp
+++ b/src/server/OutputPort.hpp
@@ -18,7 +18,6 @@
#define INGEN_ENGINE_OUTPUTPORT_HPP
#include <cstdlib>
-#include <string>
#include "PortImpl.hpp"
diff --git a/src/server/PatchImpl.cpp b/src/server/PatchImpl.cpp
index da27657a..5ea3b93b 100644
--- a/src/server/PatchImpl.cpp
+++ b/src/server/PatchImpl.cpp
@@ -15,7 +15,6 @@
*/
#include <cassert>
-#include <string>
#include "ingen/URIs.hpp"
#include "ingen/World.hpp"
diff --git a/src/server/PluginImpl.hpp b/src/server/PluginImpl.hpp
index 8aa741e0..13e78b1f 100644
--- a/src/server/PluginImpl.hpp
+++ b/src/server/PluginImpl.hpp
@@ -18,7 +18,6 @@
#define INGEN_ENGINE_PLUGINIMPL_HPP
#include <cstdlib>
-#include <string>
#include <boost/utility.hpp>
diff --git a/src/server/PortImpl.hpp b/src/server/PortImpl.hpp
index 8a38e261..68787db8 100644
--- a/src/server/PortImpl.hpp
+++ b/src/server/PortImpl.hpp
@@ -18,7 +18,6 @@
#define INGEN_ENGINE_PORTIMPL_HPP
#include <cstdlib>
-#include <string>
#include "raul/Array.hpp"
#include "raul/Atom.hpp"
diff --git a/src/server/internals/Controller.cpp b/src/server/internals/Controller.cpp
index 7b18366d..1fb3cf76 100644
--- a/src/server/internals/Controller.cpp
+++ b/src/server/internals/Controller.cpp
@@ -16,8 +16,6 @@
#include <math.h>
-#include <string>
-
#include "ingen/URIs.hpp"
#include "internals/Controller.hpp"
#include "lv2/lv2plug.in/ns/ext/atom/util.h"
diff --git a/src/server/internals/Controller.hpp b/src/server/internals/Controller.hpp
index 31e5f306..4a366b08 100644
--- a/src/server/internals/Controller.hpp
+++ b/src/server/internals/Controller.hpp
@@ -17,7 +17,6 @@
#ifndef INGEN_INTERNALS_CONTROLLER_HPP
#define INGEN_INTERNALS_CONTROLLER_HPP
-#include <string>
#include "NodeImpl.hpp"
namespace Ingen {
diff --git a/src/server/internals/Delay.cpp b/src/server/internals/Delay.cpp
index 0ee0e56d..d64f7a8f 100644
--- a/src/server/internals/Delay.cpp
+++ b/src/server/internals/Delay.cpp
@@ -17,7 +17,6 @@
#include <limits.h>
#include <cmath>
-#include <string>
#include "ingen/URIs.hpp"
#include "raul/Array.hpp"
diff --git a/src/server/internals/Delay.hpp b/src/server/internals/Delay.hpp
index 047fa41e..3c512d2c 100644
--- a/src/server/internals/Delay.hpp
+++ b/src/server/internals/Delay.hpp
@@ -17,10 +17,10 @@
#ifndef INGEN_INTERNALS_DELAY_HPP
#define INGEN_INTERNALS_DELAY_HPP
-#include <string>
#include <math.h>
-#include "types.hpp"
+
#include "NodeImpl.hpp"
+#include "types.hpp"
namespace Ingen {
namespace Server {
diff --git a/src/server/internals/Note.cpp b/src/server/internals/Note.cpp
index 5f509859..81562f83 100644
--- a/src/server/internals/Note.cpp
+++ b/src/server/internals/Note.cpp
@@ -15,7 +15,6 @@
*/
#include <cmath>
-#include <string>
#include "ingen/URIs.hpp"
#include "lv2/lv2plug.in/ns/ext/atom/util.h"
diff --git a/src/server/internals/Note.hpp b/src/server/internals/Note.hpp
index 9cf07a05..6c7d9a13 100644
--- a/src/server/internals/Note.hpp
+++ b/src/server/internals/Note.hpp
@@ -17,9 +17,8 @@
#ifndef INGEN_INTERNALS_NOTE_HPP
#define INGEN_INTERNALS_NOTE_HPP
-#include <string>
-#include "types.hpp"
#include "NodeImpl.hpp"
+#include "types.hpp"
namespace Ingen {
namespace Server {
diff --git a/src/server/internals/Trigger.cpp b/src/server/internals/Trigger.cpp
index f938718f..81361bb8 100644
--- a/src/server/internals/Trigger.cpp
+++ b/src/server/internals/Trigger.cpp
@@ -15,7 +15,6 @@
*/
#include <cmath>
-#include <string>
#include "ingen/URIs.hpp"
#include "lv2/lv2plug.in/ns/ext/atom/util.h"
diff --git a/src/server/internals/Trigger.hpp b/src/server/internals/Trigger.hpp
index f9953718..59badc70 100644
--- a/src/server/internals/Trigger.hpp
+++ b/src/server/internals/Trigger.hpp
@@ -17,7 +17,6 @@
#ifndef INGEN_INTERNALS_TRIGGER_HPP
#define INGEN_INTERNALS_TRIGGER_HPP
-#include <string>
#include "NodeImpl.hpp"
namespace Ingen {
diff --git a/src/server/util.hpp b/src/server/util.hpp
index cae43c35..8f5a39ee 100644
--- a/src/server/util.hpp
+++ b/src/server/util.hpp
@@ -18,7 +18,6 @@
#define INGEN_ENGINE_UTIL_HPP
#include <cstdlib>
-#include <string>
#include "raul/log.hpp"
#include "raul/Path.hpp"