forked from ibm-openbmc/phosphor-inventory-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated.mako.cpp
62 lines (57 loc) · 1.41 KB
/
generated.mako.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
## This file is a template. The comment below is emitted
## into the rendered file; feel free to edit this file.
// This file was auto generated. Do not edit.
#include "config.h"
#include "manager.hpp"
#include "utils.hpp"
#include "functor.hpp"
% for i in interfaces:
#include <${i.header()}>
% endfor
#include "gen_serialization.hpp"
namespace phosphor
{
namespace inventory
{
namespace manager
{
using namespace std::literals::string_literals;
const Manager::Makers Manager::_makers{
% for i in interfaces:
{
"${str(i)}",
std::make_tuple(
MakeInterface<
ServerObject<
${i.namespace()}>>::op,
AssignInterface<
ServerObject<
${i.namespace()}>>::op,
SerializeInterface<
ServerObject<
${i.namespace()}>, SerialOps>::op,
DeserializeInterface<
ServerObject<
${i.namespace()}>, SerialOps>::op
#ifdef CREATE_ASSOCIATIONS
, GetPropertyValue<
ServerObject<
${i.namespace()}>>::op
#endif
)
},
% endfor
};
const Manager::Events Manager::_events{
% for e in events:
{
% if e.description:
// ${e.description.strip()}
% endif
${e.call(loader, indent=indent +2)},
},
%endfor
};
} // namespace manager
} // namespace inventory
} // namespace phosphor