mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-12 21:56:54 +00:00
30 lines
595 B
TOML
30 lines
595 B
TOML
|
[info]
|
|||
|
typeName = "std::optional<"
|
|||
|
numTemplateParams = 1
|
|||
|
ctype = "OPTIONAL_TYPE"
|
|||
|
header = "optional"
|
|||
|
ns = ["namespace std"]
|
|||
|
replaceTemplateParamIndex = []
|
|||
|
# allocatorIndex = 0
|
|||
|
# underlyingContainerIndex = 0
|
|||
|
|
|||
|
[codegen]
|
|||
|
decl = """
|
|||
|
template<typename T>
|
|||
|
void getSizeType(const %1%<T> &s_ptr, size_t& returnArg);
|
|||
|
"""
|
|||
|
|
|||
|
func = """
|
|||
|
template <typename T>
|
|||
|
void getSizeType(const %1%<T>& s_ptr, size_t& returnArg) {
|
|||
|
if (s_ptr) {
|
|||
|
SAVE_SIZE(sizeof(%1%<T>) - sizeof(T));
|
|||
|
SAVE_DATA(true);
|
|||
|
getSizeType(*s_ptr, returnArg);
|
|||
|
} else {
|
|||
|
SAVE_SIZE(sizeof(%1%<T>));
|
|||
|
SAVE_DATA(false);
|
|||
|
}
|
|||
|
}
|
|||
|
"""
|