object-introspection/types/optional_type.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
563 B
TOML
Raw Normal View History

2022-12-19 14:37:51 +00:00
[info]
type_name = "std::optional"
2022-12-19 14:37:51 +00:00
ctype = "OPTIONAL_TYPE"
header = "optional"
# Old:
typeName = "std::optional<"
2022-12-19 14:37:51 +00:00
ns = ["namespace std"]
numTemplateParams = 1
2022-12-19 14:37:51 +00:00
[codegen]
decl = """
template<typename T>
void getSizeType(const %1%<T> &container, size_t& returnArg);
2022-12-19 14:37:51 +00:00
"""
func = """
template <typename T>
void getSizeType(const %1%<T>& container, size_t& returnArg) {
if (container) {
2022-12-19 14:37:51 +00:00
SAVE_SIZE(sizeof(%1%<T>) - sizeof(T));
SAVE_DATA(true);
getSizeType(*container, returnArg);
2022-12-19 14:37:51 +00:00
} else {
SAVE_SIZE(sizeof(%1%<T>));
SAVE_DATA(false);
}
}
"""