object-introspection/types/repeated_ptr_field_type.toml

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

31 lines
818 B
TOML
Raw Normal View History

2022-12-19 14:37:51 +00:00
[info]
type_name = "google::protobuf::RepeatedPtrField"
2022-12-19 14:37:51 +00:00
ctype = "REPEATED_FIELD_TYPE"
header = "google/protobuf/repeated_field.h"
# Old:
typeName = "google::protobuf::RepeatedPtrField<"
2022-12-19 14:37:51 +00:00
ns = ["google::protobuf::RepeatedPtrField"]
numTemplateParams = 1
2022-12-19 14:37:51 +00:00
replaceTemplateParamIndex = []
[codegen]
decl = """
template<typename Element>
void getSizeType(const %1%<Element> &container, size_t& returnArg);
"""
func = """
template<typename Element>
void getSizeType(const %1%<Element> &container, size_t& returnArg)
{
SAVE_DATA((uintptr_t)&container);
SAVE_DATA((uintptr_t)container.Capacity());
SAVE_DATA((uintptr_t)container.size());
// The double ampersand is needed otherwise this loop doesn't work with vector<bool>
for (const auto& it: container) {
getSizeType(it, returnArg);
}
}
"""