aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-22 09:56:01 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-22 09:56:01 +0900
commit838d50406889ecd96271153ed9ec3a8160bcfe16 (patch)
treee6542e5785d51372427066a5dff0a46354a5d833
parentc2fdab514796f8f14cc59cf403a0fc557ce3c8f8 (diff)
Move declaration to source code
Change-Id: I41e93a5bfe7d926b44201f08cf21fdd11b387bf5 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
-rw-r--r--src/wm_layer_control.cpp1
-rw-r--r--src/wm_layer_control.hpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/wm_layer_control.cpp b/src/wm_layer_control.cpp
index 0d8c924..30e013f 100644
--- a/src/wm_layer_control.cpp
+++ b/src/wm_layer_control.cpp
@@ -16,6 +16,7 @@
#include <assert.h>
#include "layers.hpp"
+#include "wm_layer.hpp"
#include "wm_layer_control.hpp"
using std::string;
diff --git a/src/wm_layer_control.hpp b/src/wm_layer_control.hpp
index dacb557..bb0aee1 100644
--- a/src/wm_layer_control.hpp
+++ b/src/wm_layer_control.hpp
@@ -19,10 +19,10 @@
#include <vector>
#include "wm_error.hpp"
-#include "wm_layer.hpp"
namespace wm {
+class WMLayer;
class LayerControl
{
public: