Files
sdbus-cpp/examples/org.freedesktop.DBus.ObjectManager/examplemanager-planet1-client-glue.h
T

60 lines
1.2 KiB
C++
Raw Normal View History

2021-10-14 15:54:44 +02:00
/*
* This file was automatically generated by sdbus-c++-xml2cpp; DO NOT EDIT!
*/
#ifndef __sdbuscpp__examplemanager_planet1_client_glue_h__proxy__H__
#define __sdbuscpp__examplemanager_planet1_client_glue_h__proxy__H__
#include <sdbus-c++/sdbus-c++.h>
#include <string>
#include <tuple>
namespace org {
namespace sdbuscpp {
namespace ExampleManager {
class Planet1_proxy
{
public:
static constexpr const char* INTERFACE_NAME = "org.sdbuscpp.ExampleManager.Planet1";
2021-10-14 15:54:44 +02:00
protected:
Planet1_proxy(sdbus::IProxy& proxy)
: m_proxy(proxy)
2021-10-14 15:54:44 +02:00
{
}
Planet1_proxy(const Planet1_proxy&) = delete;
Planet1_proxy& operator=(const Planet1_proxy&) = delete;
Planet1_proxy(Planet1_proxy&&) = delete;
Planet1_proxy& operator=(Planet1_proxy&&) = delete;
2021-10-14 15:54:44 +02:00
~Planet1_proxy() = default;
void registerProxy()
{
}
2021-10-14 15:54:44 +02:00
public:
uint64_t GetPopulation()
{
uint64_t result;
m_proxy.callMethod("GetPopulation").onInterface(INTERFACE_NAME).storeResultsTo(result);
2021-10-14 15:54:44 +02:00
return result;
}
public:
std::string Name()
{
return m_proxy.getProperty("Name").onInterface(INTERFACE_NAME).get<std::string>();
2021-10-14 15:54:44 +02:00
}
private:
sdbus::IProxy& m_proxy;
2021-10-14 15:54:44 +02:00
};
}}} // namespaces
#endif