// // 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 logdebug("Policy check returns positive"); return true; } }; } // namespace wm #endif //TMCAGLWM_POLICY_HPP