xref: /openbmc/phosphor-logging/callouts/callouts-gen.hpp.mako (revision b60359105f0b08d53530e8e313d8ea12968977dc)
1## Note that this file is not auto generated, it is what generates the
2## callouts-gen.hpp file
3// This file was autogenerated.  Do not edit!
4// See callouts-gen.py for more details
5#pragma once
6
7#include <string>
8#include <tuple>
9
10namespace phosphor
11{
12namespace logging
13{
14
15constexpr auto callouts =
16{
17% for key, value in sorted(calloutsMap.items()):
18    std::make_tuple("${key}", "${value}"),
19% endfor
20};
21
22} // namespace logging
23} // namespace phosphor
24