diff options
Diffstat (limited to 'src/request.cpp')
-rw-r--r-- | src/request.cpp | 14 |
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 |