7ad9872351a8dcc2202eb811981874a35f253257
[staging/windowmanager.git] / src / policy.hpp
1 //
2 // Created by m on 9/10/17.
3 //
4
5 #ifndef TMCAGLWM_POLICY_HPP
6 #define TMCAGLWM_POLICY_HPP
7
8 #include "layout.hpp"
9
10 namespace wm {
11
12 class Policy {
13 public:
14    bool layout_is_valid(LayoutState const & /* layout */) {
15       // We do not check for policy currently
16       logdebug("Policy check returns positive");
17       return true;
18    }
19 };
20
21 }  // namespace wm
22
23 #endif //TMCAGLWM_POLICY_HPP