summaryrefslogtreecommitdiffstats
path: root/src/gui/ConnectWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-03 12:34:15 +0200
committerDavid Robillard <d@drobilla.net>2020-08-03 12:34:15 +0200
commit5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2 (patch)
tree8efa2c487c555850e61833b771cfc36056858975 /src/gui/ConnectWindow.hpp
parent7f711e938900cc7ab714ebb5279d2312964a41b1 (diff)
downloadingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.tar.gz
ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.tar.bz2
ingen-5e3d6fd5cf29ce89741fdd5c61dfa62877d276d2.zip
Clean up includes
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check.
Diffstat (limited to 'src/gui/ConnectWindow.hpp')
-rw-r--r--src/gui/ConnectWindow.hpp21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/gui/ConnectWindow.hpp b/src/gui/ConnectWindow.hpp
index 6d0b6f5a..0eaf7bb3 100644
--- a/src/gui/ConnectWindow.hpp
+++ b/src/gui/ConnectWindow.hpp
@@ -20,21 +20,24 @@
#include "Window.hpp"
#include "ingen/Message.hpp"
-#include "lilv/lilv.h"
-#include <gtkmm/builder.h>
-#include <gtkmm/button.h>
-#include <gtkmm/entry.h>
-#include <gtkmm/image.h>
-#include <gtkmm/label.h>
-#include <gtkmm/progressbar.h>
-#include <gtkmm/radiobutton.h>
-#include <gtkmm/spinbutton.h>
+#include <glibmm/refptr.h>
#include <cstdint>
#include <memory>
#include <string>
+namespace Gtk {
+class Builder;
+class Button;
+class Entry;
+class Image;
+class Label;
+class ProgressBar;
+class RadioButton;
+class SpinButton;
+} // namespace Gtk
+
namespace ingen {
class Interface;