forked from Kistler-Group/sdbus-cpp
fix non-virtual-dtor warning
This commit is contained in:
@ -14,7 +14,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
class PlanetProxy : public sdbus::ProxyInterfaces< org::sdbuscpp::ExampleManager::Planet1_proxy >
|
class PlanetProxy final : public sdbus::ProxyInterfaces< org::sdbuscpp::ExampleManager::Planet1_proxy >
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
PlanetProxy(sdbus::IConnection& connection, std::string destination, std::string path)
|
PlanetProxy(sdbus::IConnection& connection, std::string destination, std::string path)
|
||||||
@ -29,7 +29,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class ManagerProxy : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
class ManagerProxy final : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ManagerProxy(sdbus::IConnection& connection, const std::string& destination, std::string path)
|
ManagerProxy(sdbus::IConnection& connection, const std::string& destination, std::string path)
|
||||||
|
@ -34,7 +34,7 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class PlanetAdaptor : public sdbus::AdaptorInterfaces< org::sdbuscpp::ExampleManager::Planet1_adaptor,
|
class PlanetAdaptor final : public sdbus::AdaptorInterfaces< org::sdbuscpp::ExampleManager::Planet1_adaptor,
|
||||||
sdbus::ManagedObject_adaptor,
|
sdbus::ManagedObject_adaptor,
|
||||||
sdbus::Properties_adaptor >
|
sdbus::Properties_adaptor >
|
||||||
{
|
{
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
namespace sdbus { namespace test {
|
namespace sdbus { namespace test {
|
||||||
|
|
||||||
class ObjectManagerTestAdaptor : public sdbus::AdaptorInterfaces< sdbus::ObjectManager_adaptor >
|
class ObjectManagerTestAdaptor final : public sdbus::AdaptorInterfaces< sdbus::ObjectManager_adaptor >
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ObjectManagerTestAdaptor(sdbus::IConnection& connection, std::string path) :
|
ObjectManagerTestAdaptor(sdbus::IConnection& connection, std::string path) :
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
namespace sdbus { namespace test {
|
namespace sdbus { namespace test {
|
||||||
|
|
||||||
class ObjectManagerTestProxy : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
class ObjectManagerTestProxy final : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ObjectManagerTestProxy(sdbus::IConnection& connection, std::string destination, std::string objectPath)
|
ObjectManagerTestProxy(sdbus::IConnection& connection, std::string destination, std::string objectPath)
|
||||||
|
Reference in New Issue
Block a user