summaryrefslogtreecommitdiffstats
path: root/src/server/NodeFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-18 17:52:32 +0000
committerDavid Robillard <d@drobilla.net>2011-05-18 17:52:32 +0000
commit4d365e0c45e69d2a0ace0faec50547d37588bf0c (patch)
tree078af4949c9181c3b68d9057012262e9507fd052 /src/server/NodeFactory.cpp
parent177f2b48b6516ba4dee70a709ce28105f1092de2 (diff)
downloadingen-4d365e0c45e69d2a0ace0faec50547d37588bf0c.tar.gz
ingen-4d365e0c45e69d2a0ace0faec50547d37588bf0c.tar.bz2
ingen-4d365e0c45e69d2a0ace0faec50547d37588bf0c.zip
Remove unnecessary non-portable includes.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3283 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/NodeFactory.cpp')
-rw-r--r--src/server/NodeFactory.cpp19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/server/NodeFactory.cpp b/src/server/NodeFactory.cpp
index 11c11bb4..590f2f86 100644
--- a/src/server/NodeFactory.cpp
+++ b/src/server/NodeFactory.cpp
@@ -15,26 +15,31 @@
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <cstdlib>
-#include <string>
-#include <pthread.h>
-#include <dirent.h>
#include <float.h>
-#include <cmath>
+#include <math.h>
+#include <stdlib.h>
+
+#include <string>
+
#include <glibmm/miscutils.h>
+
#include "sord/sordmm.hpp"
+
#include "raul/log.hpp"
-#include "ingen-config.h"
-#include "shared/World.hpp"
+
#include "internals/Controller.hpp"
#include "internals/Delay.hpp"
#include "internals/Note.hpp"
#include "internals/Trigger.hpp"
+#include "shared/World.hpp"
+
#include "Engine.hpp"
#include "InternalPlugin.hpp"
#include "NodeFactory.hpp"
#include "PatchImpl.hpp"
#include "ThreadManager.hpp"
+
+#include "ingen-config.h"
#ifdef HAVE_LILV
#include "lilv/lilv.h"
#include "LV2Plugin.hpp"