Home
last modified time | relevance | path

Searched refs:MethodBase (Results 1 – 1 of 1) sorted by relevance

/openbmc/phosphor-dbus-monitor/src/
H A Dmethod.hpp55 class MethodBase : public Callback class
58 MethodBase() = delete;
59 MethodBase(const MethodBase&) = delete;
60 MethodBase(MethodBase&&) = default;
61 MethodBase& operator=(const MethodBase&) = delete;
62 MethodBase& operator=(MethodBase&&) = default;
63 virtual ~MethodBase() = default;
64 MethodBase(const std::string& b, const std::string& p, const std::string& i, in MethodBase() function in phosphor::dbus::monitoring::MethodBase
86 class Method : public MethodBase
98 MethodBase(bus, path, iface, method), in Method()