I am new to autosar adaptive platform for embedded application. I have a C++ header file with a nested datastructure as mentioned below. Appreciate if someone can suggest a way/document with the rules to convert this nested data structure to arxml file.
typedef struct xyz {
int a;
char* string;
} A;
typedef struct abc {
A a;
} B;
typedef struct efg {
B b;
} C;