summaryrefslogtreecommitdiffstats
path: root/src/gui
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/gui
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/gui')
-rw-r--r--src/gui/Edge.hpp1
-rw-r--r--src/gui/NodeModule.hpp2
-rw-r--r--src/gui/ObjectMenu.hpp2
-rw-r--r--src/gui/PatchPortModule.hpp3
-rw-r--r--src/gui/PatchView.hpp2
-rw-r--r--src/gui/Port.hpp2
-rw-r--r--src/gui/PortMenu.hpp2
-rw-r--r--src/gui/PortPropertiesWindow.cpp1
-rw-r--r--src/gui/PropertiesWindow.cpp1
-rw-r--r--src/gui/SubpatchModule.hpp4
-rw-r--r--src/gui/ThreadedLoader.cpp8
-rw-r--r--src/gui/ThreadedLoader.hpp12
12 files changed, 20 insertions, 20 deletions
diff --git a/src/gui/Edge.hpp b/src/gui/Edge.hpp
index 99b83cbb..0bc22a79 100644
--- a/src/gui/Edge.hpp
+++ b/src/gui/Edge.hpp
@@ -18,7 +18,6 @@
#define INGEN_GUI_EDGE_HPP
#include <cassert>
-#include <string>
#include "ganv/Edge.hpp"
#include "raul/SharedPtr.hpp"
diff --git a/src/gui/NodeModule.hpp b/src/gui/NodeModule.hpp
index 3ec72f6d..42ad0fc4 100644
--- a/src/gui/NodeModule.hpp
+++ b/src/gui/NodeModule.hpp
@@ -17,9 +17,9 @@
#ifndef INGEN_GUI_NODEMODULE_HPP
#define INGEN_GUI_NODEMODULE_HPP
-#include <string>
#include "ganv/Module.hpp"
#include "raul/SharedPtr.hpp"
+
#include "Port.hpp"
namespace Raul { class Atom; }
diff --git a/src/gui/ObjectMenu.hpp b/src/gui/ObjectMenu.hpp
index 9c720a4a..6cb20e70 100644
--- a/src/gui/ObjectMenu.hpp
+++ b/src/gui/ObjectMenu.hpp
@@ -17,8 +17,6 @@
#ifndef INGEN_GUI_OBJECTMENU_HPP
#define INGEN_GUI_OBJECTMENU_HPP
-#include <string>
-
#include <gtkmm/builder.h>
#include <gtkmm/checkmenuitem.h>
#include <gtkmm/menu.h>
diff --git a/src/gui/PatchPortModule.hpp b/src/gui/PatchPortModule.hpp
index 8e3a320c..90f9cd6d 100644
--- a/src/gui/PatchPortModule.hpp
+++ b/src/gui/PatchPortModule.hpp
@@ -18,9 +18,12 @@
#define INGEN_GUI_PATCHPORTMODULE_HPP
#include <string>
+
#include <boost/enable_shared_from_this.hpp>
+
#include "ganv/Module.hpp"
#include "raul/URI.hpp"
+
#include "Port.hpp"
namespace Raul { class Atom; }
diff --git a/src/gui/PatchView.hpp b/src/gui/PatchView.hpp
index 6782d311..14183a89 100644
--- a/src/gui/PatchView.hpp
+++ b/src/gui/PatchView.hpp
@@ -17,8 +17,6 @@
#ifndef INGEN_GUI_PATCHVIEW_HPP
#define INGEN_GUI_PATCHVIEW_HPP
-#include <string>
-
#include <gtkmm/box.h>
#include <gtkmm/builder.h>
#include <gtkmm/scrolledwindow.h>
diff --git a/src/gui/Port.hpp b/src/gui/Port.hpp
index d94f9511..6552ba8d 100644
--- a/src/gui/Port.hpp
+++ b/src/gui/Port.hpp
@@ -19,7 +19,9 @@
#include <cassert>
#include <string>
+
#include <gtkmm/menu.h>
+
#include "ganv/Port.hpp"
#include "raul/SharedPtr.hpp"
#include "raul/WeakPtr.hpp"
diff --git a/src/gui/PortMenu.hpp b/src/gui/PortMenu.hpp
index cc33efb0..598afaa5 100644
--- a/src/gui/PortMenu.hpp
+++ b/src/gui/PortMenu.hpp
@@ -17,8 +17,6 @@
#ifndef INGEN_GUI_PORTMENU_HPP
#define INGEN_GUI_PORTMENU_HPP
-#include <string>
-
#include <gtkmm/builder.h>
#include <gtkmm/menu.h>
#include <gtkmm/menushell.h>
diff --git a/src/gui/PortPropertiesWindow.cpp b/src/gui/PortPropertiesWindow.cpp
index e0e95a67..4ef6d89b 100644
--- a/src/gui/PortPropertiesWindow.cpp
+++ b/src/gui/PortPropertiesWindow.cpp
@@ -16,7 +16,6 @@
#include <cassert>
#include <list>
-#include <string>
#include "ingen/Interface.hpp"
#include "ingen/client/NodeModel.hpp"
diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp
index 8fdb8f78..c12aefd5 100644
--- a/src/gui/PropertiesWindow.cpp
+++ b/src/gui/PropertiesWindow.cpp
@@ -17,7 +17,6 @@
#include <algorithm>
#include <cassert>
#include <set>
-#include <string>
#include <gtkmm/label.h>
#include <gtkmm/spinbutton.h>
diff --git a/src/gui/SubpatchModule.hpp b/src/gui/SubpatchModule.hpp
index e71dbe63..727f681d 100644
--- a/src/gui/SubpatchModule.hpp
+++ b/src/gui/SubpatchModule.hpp
@@ -17,10 +17,10 @@
#ifndef INGEN_GUI_SUBPATCHMODULE_HPP
#define INGEN_GUI_SUBPATCHMODULE_HPP
-#include <string>
#include "raul/SharedPtr.hpp"
-#include "PatchPortModule.hpp"
+
#include "NodeModule.hpp"
+#include "PatchPortModule.hpp"
namespace Ingen { namespace Client {
class PatchModel;
diff --git a/src/gui/ThreadedLoader.cpp b/src/gui/ThreadedLoader.cpp
index 961ed340..f7c77c99 100644
--- a/src/gui/ThreadedLoader.cpp
+++ b/src/gui/ThreadedLoader.cpp
@@ -15,12 +15,14 @@
*/
#include <string>
-#include "raul/log.hpp"
-#include "ingen/World.hpp"
+
#include "ingen/Module.hpp"
+#include "ingen/World.hpp"
+#include "ingen/client/PatchModel.hpp"
+#include "raul/log.hpp"
+
#include "App.hpp"
#include "ThreadedLoader.hpp"
-#include "ingen/client/PatchModel.hpp"
using namespace Raul;
using namespace boost;
diff --git a/src/gui/ThreadedLoader.hpp b/src/gui/ThreadedLoader.hpp
index b9b613b8..e7815eeb 100644
--- a/src/gui/ThreadedLoader.hpp
+++ b/src/gui/ThreadedLoader.hpp
@@ -17,16 +17,18 @@
#ifndef INGEN_GUI_THREADEDLOADER_HPP
#define INGEN_GUI_THREADEDLOADER_HPP
-#include <string>
-#include <list>
#include <cassert>
+#include <list>
+#include <string>
+
#include <boost/optional/optional.hpp>
-#include "raul/Thread.hpp"
-#include "raul/Slave.hpp"
#include <glibmm/thread.h>
+
#include "ingen/Interface.hpp"
-#include "ingen/serialisation/Serialiser.hpp"
#include "ingen/serialisation/Parser.hpp"
+#include "ingen/serialisation/Serialiser.hpp"
+#include "raul/Slave.hpp"
+#include "raul/Thread.hpp"
namespace Ingen {
namespace GUI {