summaryrefslogtreecommitdiffstats
path: root/src/policy.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/policy.hpp')
-rw-r--r--src/policy.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/policy.hpp b/src/policy.hpp
new file mode 100644
index 0000000..3c0a234
--- /dev/null
+++ b/src/policy.hpp
@@ -0,0 +1,22 @@
+//
+// Created by m on 9/10/17.
+//
+
+#ifndef TMCAGLWM_POLICY_HPP
+#define TMCAGLWM_POLICY_HPP
+
+#include "layout.hpp"
+
+namespace wm {
+
+class Policy {
+public:
+ bool layout_is_valid(LayoutState const & /* layout */) {
+ // We do not check for policy currently
+ return true;
+ }
+};
+
+} // namespace wm
+
+#endif //TMCAGLWM_POLICY_HPP