Modify app
[apps/agl-service-windowmanager.git] / src / request.cpp
index 2e674d8..97b9f49 100644 (file)
  * limitations under the License.
  */
 
-#include "applist.hpp"
+#include "request.hpp"
 
-namespace wm {
+namespace wm
+{
 
 using std::string;
 
-WMRequest::WMRequest(){}
+WMRequest::WMRequest() {}
 
 WMRequest::WMRequest(string appid, string role, string area, Task task)
     : seq_num(0),
@@ -29,14 +30,15 @@ WMRequest::WMRequest(string appid, string role, string area, Task task)
 {
 }
 
-WMRequest::~WMRequest(){
-
+WMRequest::~WMRequest()
+{
 }
 
-WMRequest::WMRequest(const WMRequest &obj){
+WMRequest::WMRequest(const WMRequest &obj)
+{
     this->seq_num = obj.seq_num;
     this->trigger = obj.trigger;
     this->sync_draw_req = obj.sync_draw_req;
 }
 
-}
\ No newline at end of file
+} // namespace wm
\ No newline at end of file