aboutsummaryrefslogtreecommitdiffstats
path: root/src/request.cpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-05-30 19:06:32 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-05-30 19:06:32 +0900
commitdfe4aee045113eceaeabd327291f94583e7b13d3 (patch)
tree745826e7154c4d08606456dcef68716e64c70b81 /src/request.cpp
parent5d91a5ffe0bc614ee79a18818dadf5836ce038d7 (diff)
Format source codes
Change-Id: I28e99487b814b23fe99aa6bc8ec4538af3940acf Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/request.cpp')
-rw-r--r--src/request.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/request.cpp b/src/request.cpp
index 9c69058..97b9f49 100644
--- a/src/request.cpp
+++ b/src/request.cpp
@@ -16,11 +16,12 @@
#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