1*40e9b92eSEd Tanous // SPDX-License-Identifier: Apache-2.0 2*40e9b92eSEd Tanous // SPDX-FileCopyrightText: Copyright OpenBMC Authors 3853c0dc5SEd Tanous #pragma once 4853c0dc5SEd Tanous #include <nlohmann/json.hpp> 5853c0dc5SEd Tanous 6853c0dc5SEd Tanous namespace trusted_component 7853c0dc5SEd Tanous { 8853c0dc5SEd Tanous // clang-format off 9853c0dc5SEd Tanous 10853c0dc5SEd Tanous enum class TrustedComponentType{ 11853c0dc5SEd Tanous Invalid, 12853c0dc5SEd Tanous Discrete, 13853c0dc5SEd Tanous Integrated, 14853c0dc5SEd Tanous }; 15853c0dc5SEd Tanous 16853c0dc5SEd Tanous NLOHMANN_JSON_SERIALIZE_ENUM(TrustedComponentType, { 17853c0dc5SEd Tanous {TrustedComponentType::Invalid, "Invalid"}, 18853c0dc5SEd Tanous {TrustedComponentType::Discrete, "Discrete"}, 19853c0dc5SEd Tanous {TrustedComponentType::Integrated, "Integrated"}, 20853c0dc5SEd Tanous }); 21853c0dc5SEd Tanous 22853c0dc5SEd Tanous } 23853c0dc5SEd Tanous // clang-format on 24