summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Boles <dboles@src.gnome.org>2017-01-30 20:55:33 +0000
committerDaniel Boles <dboles@src.gnome.org>2017-02-02 08:58:48 +0000
commit8b05dc9046e0e2a731f5674d64c63a6ecbdb3e6a (patch)
tree7a46f2770387d64874371e5c2d3c15b2d60437c9
parent9baaa16dd7bfd0371aa3b4f18c8423d81f5f6a9e (diff)
downloadglibmm-8b05dc9046e0e2a731f5674d64c63a6ecbdb3e6a.tar.gz
Gio::Action: #include <glibmm/variant.h> in hg
Currently, it is included indirectly, via 3 other headers. This is brittle. Without that, users of action.h would have to manually include variant.h to use methods returning the forward-declared VariantBase, which isn’t very helpful. Plus, the header uses types like Variant<> templates and VariantContainerBase, which were never forward-declared. Including it directly makes the dependency more obvious and less brittle and spares us from having to write a bunch more forward-declarations. https://bugzilla.gnome.org/show_bug.cgi?id=777953
-rw-r--r--gio/src/action.hg8
1 files changed, 1 insertions, 7 deletions
diff --git a/gio/src/action.hg b/gio/src/action.hg
index a7ce66ef..f05d2268 100644
--- a/gio/src/action.hg
+++ b/gio/src/action.hg
@@ -18,6 +18,7 @@
_CONFIGINCLUDE(giommconfig.h)
#include <glibmm/interface.h>
+#include <glibmm/variant.h>
#include <glibmm/varianttype.h>
#include <gio/gio.h>
@@ -29,13 +30,6 @@ _PINCLUDE(gio/gio.h)
typedef struct _GActionInterface GActionInterface;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
-namespace Glib
-{
-
-class VariantBase;
-
-}
-
namespace Gio
{