summaryrefslogtreecommitdiff
path: root/include/CommonAPI/CallInfo.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/CommonAPI/CallInfo.hpp')
-rw-r--r--include/CommonAPI/CallInfo.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/CommonAPI/CallInfo.hpp b/include/CommonAPI/CallInfo.hpp
index 2132f7c..0195e6b 100644
--- a/include/CommonAPI/CallInfo.hpp
+++ b/include/CommonAPI/CallInfo.hpp
@@ -21,6 +21,9 @@ struct COMMONAPI_EXPORT CallInfo {
CallInfo(Timeout_t _timeout, Sender_t _sender)
: timeout_(_timeout), sender_(_sender) {
}
+ CallInfo(const CallInfo &_other)
+ : timeout_(_other.timeout_), sender_(_other.sender_) {
+ }
Timeout_t timeout_;
Sender_t sender_;