From 0b02be925a29357f69abbc9e9a58e7c5aaed2eab Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Fri, 31 Aug 2018 11:55:55 -0700 Subject: add .clang-format Change-Id: I7c2a527b4751a560703a61fcbe9638b150546af5 Signed-off-by: Patrick Venture --- host-interface.hpp | 73 +++++++++++++++++++++++++++--------------------------- 1 file changed, 36 insertions(+), 37 deletions(-) (limited to 'host-interface.hpp') diff --git a/host-interface.hpp b/host-interface.hpp index 5b2ac68..5c95a66 100644 --- a/host-interface.hpp +++ b/host-interface.hpp @@ -1,8 +1,8 @@ #pragma once +#include #include #include -#include namespace phosphor { namespace host @@ -16,46 +16,45 @@ namespace command * DBus API. */ class Host : public sdbusplus::server::object::object< - sdbusplus::xyz::openbmc_project::Control::server::Host> + sdbusplus::xyz::openbmc_project::Control::server::Host> { - public: - /** @brief Constructs Host Control Interface - * - * @param[in] bus - The Dbus bus object - * @param[in] objPath - The Dbus object path - */ - Host(sdbusplus::bus::bus& bus, - const char* objPath) : - sdbusplus::server::object::object< - sdbusplus::xyz::openbmc_project::Control::server::Host>( - bus, objPath), - bus(bus) - { - // Nothing to do - } + public: + /** @brief Constructs Host Control Interface + * + * @param[in] bus - The Dbus bus object + * @param[in] objPath - The Dbus object path + */ + Host(sdbusplus::bus::bus& bus, const char* objPath) : + sdbusplus::server::object::object< + sdbusplus::xyz::openbmc_project::Control::server::Host>(bus, + objPath), + bus(bus) + { + // Nothing to do + } - /** @brief Send input command to host - * Note that the command will be queued in a FIFO if - * other commands to the host have yet to be run - * - * @param[in] command - Input command to execute - */ - void execute(Command command) override; + /** @brief Send input command to host + * Note that the command will be queued in a FIFO if + * other commands to the host have yet to be run + * + * @param[in] command - Input command to execute + */ + void execute(Command command) override; - private: - /** @brief sdbusplus DBus bus connection. */ - sdbusplus::bus::bus& bus; + private: + /** @brief sdbusplus DBus bus connection. */ + sdbusplus::bus::bus& bus; - /** @brief Callback function to be invoked by command manager - * - * @detail Conveys the status of the last Host bound command. - * Depending on the status, a CommandComplete or - * CommandFailure signal would be sent - * - * @param[in] cmd - IPMI command and data sent to Host - * @param[in] status - Success or Failure - */ - void commandStatusHandler(IpmiCmdData cmd, bool status); + /** @brief Callback function to be invoked by command manager + * + * @detail Conveys the status of the last Host bound command. + * Depending on the status, a CommandComplete or + * CommandFailure signal would be sent + * + * @param[in] cmd - IPMI command and data sent to Host + * @param[in] status - Success or Failure + */ + void commandStatusHandler(IpmiCmdData cmd, bool status); }; } // namespace command -- cgit v1.2.1