object-introspection/types/stack_container_adapter_type.toml
Alastair Robertson 68290655b1 TypeGraph: Update container TOML files to new format
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.
2023-05-26 18:21:59 +01:00

34 lines
886 B
TOML

[info]
type_name = "std::stack"
ctype = "CONTAINER_ADAPTER_TYPE"
header = "stack"
underlying_container_index = 1
# Old:
typeName = "std::stack<"
ns = ["namespace std"]
replaceTemplateParamIndex = []
underlyingContainerIndex = 1
[codegen]
decl = """
template<class T, class Container>
void getSizeType(const %1%<T, Container> &container, size_t& returnArg);
"""
func = """
template<class T, class Container>
void getSizeType(const %1%<T, Container> &containerAdapter, size_t& returnArg)
{
SAVE_DATA((uintptr_t)&containerAdapter);
// Only record the overhead of this container adapter - don't count the
// underlying container as that will be taken care of in its own
// getSizeType() function
SAVE_SIZE(sizeof(%1%<T, Container>) - sizeof(Container));
const Container &container = get_container(containerAdapter);
getSizeType(container, returnArg);
}
"""