summaryrefslogtreecommitdiff
path: root/include/CommonAPI/ProxyManager.hpp
diff options
context:
space:
mode:
authorDirk Huss <dirk_huss@mentor.com>2015-12-09 14:30:44 +0100
committerDirk Huss <dirk_huss@mentor.com>2015-12-09 14:30:44 +0100
commit77d9cdaf6acee03a1e360e0e1a3cd0b01a95b407 (patch)
tree4ed26f279ad0ae147af50d4a85072ebed751ce26 /include/CommonAPI/ProxyManager.hpp
parentb545ed39392a73c1f3c432ec6ae3558f6ab161d5 (diff)
downloadgenivi-common-api-runtime-77d9cdaf6acee03a1e360e0e1a3cd0b01a95b407.tar.gz
CommonAPI 3.1.5list
Diffstat (limited to 'include/CommonAPI/ProxyManager.hpp')
-rw-r--r--include/CommonAPI/ProxyManager.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/CommonAPI/ProxyManager.hpp b/include/CommonAPI/ProxyManager.hpp
index d7bcada..52d666c 100644
--- a/include/CommonAPI/ProxyManager.hpp
+++ b/include/CommonAPI/ProxyManager.hpp
@@ -18,6 +18,7 @@
#include <CommonAPI/Event.hpp>
#include <CommonAPI/Proxy.hpp>
#include <CommonAPI/Types.hpp>
+#include <CommonAPI/Runtime.hpp>
namespace CommonAPI {
@@ -52,13 +53,12 @@ public:
template<template<typename ...> class ProxyClass_, typename ... AttributeExtensions_>
std::shared_ptr<ProxyClass_<AttributeExtensions_...> >
- buildProxy(const std::string &_instance) {
- std::shared_ptr<Proxy> proxy = createProxy(getDomain(), getInterface(), _instance, getConnectionId());
+ buildProxy(const std::string &_instance, const ConnectionId_t& _connectionId = DEFAULT_CONNECTION_ID) {
+ std::shared_ptr<Proxy> proxy = createProxy(getDomain(), getInterface(), _instance, (DEFAULT_CONNECTION_ID == _connectionId) ? getConnectionId() : _connectionId);
if (proxy) {
return std::make_shared<ProxyClass_<AttributeExtensions_...>>(proxy);
}
return NULL;
-
}
protected: