summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-11 04:38:12 +0000
committerDavid Robillard <d@drobilla.net>2012-05-11 04:38:12 +0000
commita04c4965e3df113125b82d1b921043898d60ba6c (patch)
tree848e5c944e6af257f7c9da3ddd487e29ec226c63 /src/gui
parentf90d64eb7d90dc03fe4215bef8d77de51ca0ae78 (diff)
downloadingen-a04c4965e3df113125b82d1b921043898d60ba6c.tar.gz
ingen-a04c4965e3df113125b82d1b921043898d60ba6c.tar.bz2
ingen-a04c4965e3df113125b82d1b921043898d60ba6c.zip
Add missing includes.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4348 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/App.cpp1
-rw-r--r--src/gui/BreadCrumbs.cpp3
-rw-r--r--src/gui/Configuration.cpp3
-rw-r--r--src/gui/LoadPatchWindow.cpp2
-rw-r--r--src/gui/LoadPluginWindow.cpp2
-rw-r--r--src/gui/LoadPluginWindow.hpp1
-rw-r--r--src/gui/NewSubpatchWindow.cpp2
-rw-r--r--src/gui/NodeMenu.cpp2
-rw-r--r--src/gui/NodeModule.cpp1
-rw-r--r--src/gui/PatchBox.cpp1
-rw-r--r--src/gui/PatchBox.hpp2
-rw-r--r--src/gui/PatchCanvas.cpp1
-rw-r--r--src/gui/PatchPortModule.cpp1
-rw-r--r--src/gui/PatchWindow.hpp2
-rw-r--r--src/gui/Port.cpp7
-rw-r--r--src/gui/PortMenu.hpp5
-rw-r--r--src/gui/PortPropertiesWindow.cpp1
-rw-r--r--src/gui/PortPropertiesWindow.hpp2
-rw-r--r--src/gui/PropertiesWindow.cpp2
-rw-r--r--src/gui/PropertiesWindow.hpp2
-rw-r--r--src/gui/WidgetFactory.cpp1
-rw-r--r--src/gui/WindowFactory.cpp8
22 files changed, 45 insertions, 7 deletions
diff --git a/src/gui/App.cpp b/src/gui/App.cpp
index f56f6f41..becc309c 100644
--- a/src/gui/App.cpp
+++ b/src/gui/App.cpp
@@ -17,6 +17,7 @@
#include <cassert>
#include <fstream>
#include <string>
+#include <utility>
#include <gtk/gtkwindow.h>
diff --git a/src/gui/BreadCrumbs.cpp b/src/gui/BreadCrumbs.cpp
index a5c78f39..adc9526d 100644
--- a/src/gui/BreadCrumbs.cpp
+++ b/src/gui/BreadCrumbs.cpp
@@ -14,6 +14,9 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <list>
+#include <string>
+
#include "ingen/client/SigClientInterface.hpp"
#include "App.hpp"
diff --git a/src/gui/Configuration.cpp b/src/gui/Configuration.cpp
index 6754fd42..f3b1351b 100644
--- a/src/gui/Configuration.cpp
+++ b/src/gui/Configuration.cpp
@@ -14,10 +14,11 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <cstdlib>
#include <cassert>
+#include <cstdlib>
#include <fstream>
#include <map>
+#include <string>
#include "ganv/Port.hpp"
#include "ingen/client/PluginModel.hpp"
diff --git a/src/gui/LoadPatchWindow.cpp b/src/gui/LoadPatchWindow.cpp
index 68d51d2d..94142868 100644
--- a/src/gui/LoadPatchWindow.cpp
+++ b/src/gui/LoadPatchWindow.cpp
@@ -15,6 +15,8 @@
*/
#include <cassert>
+#include <list>
+#include <string>
#include <boost/optional.hpp>
#include <glibmm/miscutils.h>
diff --git a/src/gui/LoadPluginWindow.cpp b/src/gui/LoadPluginWindow.cpp
index 8eda5400..832f79f4 100644
--- a/src/gui/LoadPluginWindow.cpp
+++ b/src/gui/LoadPluginWindow.cpp
@@ -14,6 +14,8 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <string>
+
#include <stddef.h>
#include <cassert>
diff --git a/src/gui/LoadPluginWindow.hpp b/src/gui/LoadPluginWindow.hpp
index 9d456e4a..31710d96 100644
--- a/src/gui/LoadPluginWindow.hpp
+++ b/src/gui/LoadPluginWindow.hpp
@@ -18,6 +18,7 @@
#define INGEN_GUI_LOADPLUGINWINDOW_HPP
#include <map>
+#include <string>
#include <gtkmm.h>
diff --git a/src/gui/NewSubpatchWindow.cpp b/src/gui/NewSubpatchWindow.cpp
index 9e815df1..e03f7d9b 100644
--- a/src/gui/NewSubpatchWindow.cpp
+++ b/src/gui/NewSubpatchWindow.cpp
@@ -14,6 +14,8 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <string>
+
#include "ingen/Interface.hpp"
#include "ingen/client/ClientStore.hpp"
#include "ingen/client/PatchModel.hpp"
diff --git a/src/gui/NodeMenu.cpp b/src/gui/NodeMenu.cpp
index f6c8a4b1..ed9b0fbf 100644
--- a/src/gui/NodeMenu.cpp
+++ b/src/gui/NodeMenu.cpp
@@ -14,6 +14,8 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <string>
+
#include <gtkmm.h>
#include "ingen/Interface.hpp"
diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp
index 7d9fa2f6..6a7a424a 100644
--- a/src/gui/NodeModule.cpp
+++ b/src/gui/NodeModule.cpp
@@ -15,6 +15,7 @@
*/
#include <cassert>
+#include <string>
#include "ingen/Interface.hpp"
#include "ingen/client/NodeModel.hpp"
diff --git a/src/gui/PatchBox.cpp b/src/gui/PatchBox.cpp
index dbf011ce..d9e14373 100644
--- a/src/gui/PatchBox.cpp
+++ b/src/gui/PatchBox.cpp
@@ -16,6 +16,7 @@
#include <cassert>
#include <sstream>
+#include <string>
#include <boost/format.hpp>
#include <glib/gstdio.h>
diff --git a/src/gui/PatchBox.hpp b/src/gui/PatchBox.hpp
index 34d70aa7..3df24cf9 100644
--- a/src/gui/PatchBox.hpp
+++ b/src/gui/PatchBox.hpp
@@ -17,6 +17,8 @@
#ifndef INGEN_GUI_PATCH_BOX_HPP
#define INGEN_GUI_PATCH_BOX_HPP
+#include <string>
+
#include <gtkmm.h>
#include "raul/SharedPtr.hpp"
diff --git a/src/gui/PatchCanvas.cpp b/src/gui/PatchCanvas.cpp
index 20e3e82a..1f02371c 100644
--- a/src/gui/PatchCanvas.cpp
+++ b/src/gui/PatchCanvas.cpp
@@ -16,6 +16,7 @@
#include <cassert>
#include <map>
+#include <set>
#include <string>
#include <boost/format.hpp>
diff --git a/src/gui/PatchPortModule.cpp b/src/gui/PatchPortModule.cpp
index 3961eacf..5ea90f55 100644
--- a/src/gui/PatchPortModule.cpp
+++ b/src/gui/PatchPortModule.cpp
@@ -15,6 +15,7 @@
*/
#include <cassert>
+#include <string>
#include <utility>
#include "ingen/Interface.hpp"
diff --git a/src/gui/PatchWindow.hpp b/src/gui/PatchWindow.hpp
index c6a73210..ba4b372f 100644
--- a/src/gui/PatchWindow.hpp
+++ b/src/gui/PatchWindow.hpp
@@ -17,6 +17,8 @@
#ifndef INGEN_GUI_PATCH_WINDOW_HPP
#define INGEN_GUI_PATCH_WINDOW_HPP
+#include <string>
+
#include <gtkmm.h>
#include "raul/SharedPtr.hpp"
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp
index cbb98268..982e586f 100644
--- a/src/gui/Port.cpp
+++ b/src/gui/Port.cpp
@@ -15,17 +15,20 @@
*/
#include <cassert>
-#include "raul/log.hpp"
+#include <string>
+
#include "ganv/Module.hpp"
#include "ingen/Interface.hpp"
#include "ingen/client/PatchModel.hpp"
#include "ingen/client/PortModel.hpp"
+#include "raul/log.hpp"
+
#include "App.hpp"
#include "Configuration.hpp"
-#include "WidgetFactory.hpp"
#include "PatchWindow.hpp"
#include "Port.hpp"
#include "PortMenu.hpp"
+#include "WidgetFactory.hpp"
#include "WindowFactory.hpp"
using namespace Ingen::Client;
diff --git a/src/gui/PortMenu.hpp b/src/gui/PortMenu.hpp
index cba9359d..59a9888e 100644
--- a/src/gui/PortMenu.hpp
+++ b/src/gui/PortMenu.hpp
@@ -18,9 +18,12 @@
#define INGEN_GUI_PORTMENU_HPP
#include <string>
+
#include <gtkmm.h>
-#include "raul/SharedPtr.hpp"
+
#include "ingen/client/PortModel.hpp"
+#include "raul/SharedPtr.hpp"
+
#include "ObjectMenu.hpp"
namespace Ingen {
diff --git a/src/gui/PortPropertiesWindow.cpp b/src/gui/PortPropertiesWindow.cpp
index b7df2445..668aaa88 100644
--- a/src/gui/PortPropertiesWindow.cpp
+++ b/src/gui/PortPropertiesWindow.cpp
@@ -15,6 +15,7 @@
*/
#include <cassert>
+#include <list>
#include <string>
#include "ingen/Interface.hpp"
diff --git a/src/gui/PortPropertiesWindow.hpp b/src/gui/PortPropertiesWindow.hpp
index 479f7d0b..97426b04 100644
--- a/src/gui/PortPropertiesWindow.hpp
+++ b/src/gui/PortPropertiesWindow.hpp
@@ -17,6 +17,8 @@
#ifndef INGEN_GUI_PORTPROPERTIESWINDOW_HPP
#define INGEN_GUI_PORTPROPERTIESWINDOW_HPP
+#include <list>
+
#include <gtkmm.h>
#include "raul/SharedPtr.hpp"
diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp
index 07e01d0f..f1ee032d 100644
--- a/src/gui/PropertiesWindow.cpp
+++ b/src/gui/PropertiesWindow.cpp
@@ -14,8 +14,10 @@
along with Ingen. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <algorithm>
#include <cassert>
#include <string>
+
#include "raul/log.hpp"
#include "ingen/shared/World.hpp"
#include "ingen/client/NodeModel.hpp"
diff --git a/src/gui/PropertiesWindow.hpp b/src/gui/PropertiesWindow.hpp
index c545be92..62cf2264 100644
--- a/src/gui/PropertiesWindow.hpp
+++ b/src/gui/PropertiesWindow.hpp
@@ -17,6 +17,8 @@
#ifndef INGEN_GUI_PROPERTIES_WINDOW_HPP
#define INGEN_GUI_PROPERTIES_WINDOW_HPP
+#include <map>
+
#include <gtkmm.h>
#include "raul/SharedPtr.hpp"
diff --git a/src/gui/WidgetFactory.cpp b/src/gui/WidgetFactory.cpp
index db0c561f..572b3870 100644
--- a/src/gui/WidgetFactory.cpp
+++ b/src/gui/WidgetFactory.cpp
@@ -15,6 +15,7 @@
*/
#include <fstream>
+#include <string>
#include "raul/log.hpp"
diff --git a/src/gui/WindowFactory.cpp b/src/gui/WindowFactory.cpp
index adcdd131..2454a726 100644
--- a/src/gui/WindowFactory.cpp
+++ b/src/gui/WindowFactory.cpp
@@ -15,18 +15,20 @@
*/
#include <string>
-#include "ingen_config.h"
+
#include "ingen/client/PatchModel.hpp"
+
#include "App.hpp"
-#include "WidgetFactory.hpp"
#include "LoadPatchWindow.hpp"
#include "LoadPluginWindow.hpp"
#include "NewSubpatchWindow.hpp"
-#include "PropertiesWindow.hpp"
#include "PatchView.hpp"
#include "PatchWindow.hpp"
+#include "PropertiesWindow.hpp"
#include "RenameWindow.hpp"
+#include "WidgetFactory.hpp"
#include "WindowFactory.hpp"
+#include "ingen_config.h"
using namespace std;