mirror of
https://github.com/Kistler-Group/sdbus-cpp.git
synced 2025-08-06 13:24:26 +02:00
Add missing constructor overload for ProxyInterfaces
This commit is contained in:
@@ -113,6 +113,14 @@ namespace sdbus {
|
|||||||
{
|
{
|
||||||
getObject().finishRegistration();
|
getObject().finishRegistration();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ProxyInterfaces(std::unique_ptr<sdbus::IConnection>&& connection, std::string destination, std::string objectPath)
|
||||||
|
: ObjectHolder<IObjectProxy>(createObjectProxy(std::move(connection), std::move(destination), std::move(objectPath)))
|
||||||
|
, _Interfaces(getObject())...
|
||||||
|
{
|
||||||
|
getObject().finishRegistration();
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user