summaryrefslogtreecommitdiff
path: root/src/CommonAPI/Factory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommonAPI/Factory.hpp')
-rw-r--r--src/CommonAPI/Factory.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CommonAPI/Factory.hpp b/src/CommonAPI/Factory.hpp
index 6ba73f6..865144c 100644
--- a/src/CommonAPI/Factory.hpp
+++ b/src/CommonAPI/Factory.hpp
@@ -18,7 +18,7 @@ Factory::buildProxy(const std::string& participantId,
const std::string& serviceName,
const std::string& domain) {
- std::shared_ptr<Proxy> abstractMiddlewareProxy = createProxy(_ProxyClass<_AttributeExtensions...>::getInterfaceId(), participantId, serviceName, domain);
+ std::shared_ptr<Proxy> abstractMiddlewareProxy = createProxy(_ProxyClass<_AttributeExtensions...>::InterfaceType::getInterfaceId(), participantId, serviceName, domain);
if (abstractMiddlewareProxy) {
return std::make_shared<_ProxyClass<_AttributeExtensions...>>(abstractMiddlewareProxy);
}