summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphView.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 00:40:08 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 00:47:37 +0100
commit59397df614d6fb8af29f7e576ecad3feba3f9ed3 (patch)
treefdcabac5ed7735747f2e14c0d11321ba1b9d1832 /src/gui/GraphView.hpp
parentfd474306945c58b24a022ab557ea24832758cb20 (diff)
downloadingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.tar.gz
ingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.tar.bz2
ingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.zip
Clean up includes in gui
Diffstat (limited to 'src/gui/GraphView.hpp')
-rw-r--r--src/gui/GraphView.hpp27
1 files changed, 13 insertions, 14 deletions
diff --git a/src/gui/GraphView.hpp b/src/gui/GraphView.hpp
index 29571b67..0b6aee1e 100644
--- a/src/gui/GraphView.hpp
+++ b/src/gui/GraphView.hpp
@@ -18,36 +18,35 @@
#define INGEN_GUI_GRAPHVIEW_HPP
#include <gtkmm/box.h>
-#include <gtkmm/builder.h>
-#include <gtkmm/scrolledwindow.h>
-#include <gtkmm/spinbutton.h>
-#include <gtkmm/toggletoolbutton.h>
-#include <gtkmm/toolbar.h>
-#include <gtkmm/toolitem.h>
-#include <gtkmm/toolitem.h>
#include <memory>
+namespace Glib {
+template <class T> class RefPtr;
+} // namespace Glib
+
+namespace Gtk {
+class Builder;
+class ScrolledWindow;
+class SpinButton;
+class ToggleToolButton;
+class ToolItem;
+class Toolbar;
+} // namespace Gtk
+
namespace ingen {
class Atom;
class URI;
namespace client {
-class PortModel;
-class MetadataModel;
class GraphModel;
-class ObjectModel;
} // namespace client
namespace gui {
class App;
-class LoadPluginWindow;
-class NewSubgraphWindow;
class GraphCanvas;
-class GraphDescriptionWindow;
-class SubgraphModule;
/** The graph specific contents of a GraphWindow (ie the canvas and whatever else).
*