Brad Bishop | 8e068d9 | 2016-12-23 23:41:22 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <xyz/openbmc_project/Sensor/Value/server.hpp> |
| 4 | #include <sdbusplus/server.hpp> |
| 5 | |
| 6 | template <typename T> |
| 7 | using ServerObject = typename sdbusplus::server::object::object<T>; |
| 8 | |
| 9 | using ValueInterface = sdbusplus::xyz::openbmc_project::Sensor::server::Value; |
| 10 | using ValueObject = ServerObject<ValueInterface>; |
| 11 | |
Brad Bishop | 075f7a2 | 2017-01-06 09:45:08 -0500 | [diff] [blame] | 12 | enum class InterfaceType |
| 13 | { |
| 14 | VALUE, |
| 15 | }; |
| 16 | |
Brad Bishop | 8e068d9 | 2016-12-23 23:41:22 -0500 | [diff] [blame] | 17 | // vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 |