diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-05-30 17:33:48 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-05-31 15:09:51 +0900 |
commit | 2357c437b260d0d8cb927e6878f1226bfafb9d0b (patch) | |
tree | 1842573395cb6ec19ed7a89157abbf8e077c1547 /src/policy.hpp | |
parent | d50188f726b15a0ae2777bf2d91ee88836feeac5 (diff) |
Format source codes
* Format source codes
* Change indent spaces to 4 from 3
* Remove trailing spaces in config.xml
Change-Id: I745ba6c7cc4dcf4177add81666351c3c01de7d44
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/policy.hpp')
-rw-r--r-- | src/policy.hpp | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/policy.hpp b/src/policy.hpp index 222c8cc..b87f94d 100644 --- a/src/policy.hpp +++ b/src/policy.hpp @@ -20,17 +20,20 @@ #include "layout.hpp" #include "hmi-debug.h" -namespace wm { +namespace wm +{ -class Policy { -public: - bool layout_is_valid(LayoutState const & /* layout */) { - // We do not check for policy currently - HMI_DEBUG("wm", "Policy check returns positive"); - return true; - } +class Policy +{ + public: + bool layout_is_valid(LayoutState const & /* layout */) + { + // We do not check for policy currently + HMI_DEBUG("wm", "Policy check returns positive"); + return true; + } }; -} // namespace wm +} // namespace wm #endif //TMCAGLWM_POLICY_HPP |