summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJuergen Gehring <juergen.gehring@bmw.de>2018-01-25 01:01:22 -0800
committerJuergen Gehring <juergen.gehring@bmw.de>2018-01-25 01:01:22 -0800
commit2c259a9cbfa8fbde71ebc62d45684c375311f4fc (patch)
tree4b75ea45162a1995791fa842907eef4290adbb37 /include
parent45a3dea2e8226f2f6bd7017bd0e122419f77fdd7 (diff)
downloadgenivi-common-api-runtime-2c259a9cbfa8fbde71ebc62d45684c375311f4fc.tar.gz
capicxx-core-runtime 3.1.12.33.1.12.3
Diffstat (limited to 'include')
-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_;