diff options
-rw-r--r-- | src/wm_layer_control.cpp | 1 | ||||
-rw-r--r-- | src/wm_layer_control.hpp | 2 |
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:
|