mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
68290655b1
This change is fully backwards compatible with the old ContainerInfo parser, as it is just adding new fields. The old fields will continue to be used by legacy OICodeGen until that is removed. Also add a README to document the format.
30 lines
563 B
TOML
30 lines
563 B
TOML
[info]
|
|
type_name = "std::optional"
|
|
ctype = "OPTIONAL_TYPE"
|
|
header = "optional"
|
|
|
|
# Old:
|
|
typeName = "std::optional<"
|
|
ns = ["namespace std"]
|
|
numTemplateParams = 1
|
|
|
|
[codegen]
|
|
decl = """
|
|
template<typename T>
|
|
void getSizeType(const %1%<T> &container, size_t& returnArg);
|
|
"""
|
|
|
|
func = """
|
|
template <typename T>
|
|
void getSizeType(const %1%<T>& container, size_t& returnArg) {
|
|
if (container) {
|
|
SAVE_SIZE(sizeof(%1%<T>) - sizeof(T));
|
|
SAVE_DATA(true);
|
|
getSizeType(*container, returnArg);
|
|
} else {
|
|
SAVE_SIZE(sizeof(%1%<T>));
|
|
SAVE_DATA(false);
|
|
}
|
|
}
|
|
"""
|