blob: df6254548e2032a546de6ddb56f02b8051d672d9 [file] [log] [blame]
Matt Spinlere0017eb2018-03-27 11:17:38 -05001#pragma once
2
Matt Spinler4a6ea6a2018-03-27 14:25:12 -05003#include <com/ibm/Logging/Policy/server.hpp>
4
Matt Spinlere0017eb2018-03-27 11:17:38 -05005namespace ibm
6{
7namespace logging
8{
9
Matt Spinler4a6ea6a2018-03-27 14:25:12 -050010template <typename... T>
11using ServerObject = typename sdbusplus::server::object::object<T...>;
12
13using PolicyInterface = sdbusplus::com::ibm::Logging::server::Policy;
14using PolicyObject = ServerObject<PolicyInterface>;
15
Matt Spinlere0017eb2018-03-27 11:17:38 -050016enum class InterfaceType
17{
18 POLICY
19};
20
21}
22}