hi
I would like to develop a application (i prefer c++), which will take C header file with lot of nested structures as input and generate a html page where the data will be presented as Hierarchial tree structures, which can be collapsed..
file.h
struct level1
{
struct level2
{
struct level3
{
}
}
};
file.html
[+] level1
I can collapse the level1 as below
[-] level1
[-] level2
[+] level3
Its for Learning purpose..and i am not sure where to start. Few pointers will be really helpful.