how to collect and document all private member variables of classes from large cpp code base? [closed]









up vote
0
down vote

favorite
1












I have a large cpp code base to work with. There are several dozens of class header files. All these files have private member variables usually a vector/pair/lists of other classes. I don't have useful documentation either (duh!). To reason with this unfamiliar code base I need to have a list of all the classes and their private data members alone. I want to ignore all the member functions as of now as they are simply manipulating the data structures of private variables.I don't want to run some code documentation tool and generate bunch of html pages.



Is there a way to pull out just these private member variables and build a simple table.
eg:



| MyRoad.h | Bus.h | Van.h | People.h |
|-------------+--------------+--------------+-------------|
| vector<Bus> | list<People> | list<People> | String name |
| vector<Van> | | | String age |









share|improve this question













closed as off-topic by Some programmer dude, Galik, genpfault, SRack, user6910411 Nov 8 at 20:52


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Some programmer dude, Galik, genpfault, user6910411
If this question can be reworded to fit the rules in the help center, please edit the question.








  • 2




    "I don't want to run some code documentation tool and generate bunch of html pages" - Other than "code documentation tools" I can't think of anything that would document your code for you tbh. The output of such tools is likely easy(ish) to parse and tabulate.
    – Galik
    Nov 8 at 15:15











  • @Galik okay, we can go code-doc tool route too, no problem. I just wanted something with less noise and precise. I want to ignore as much as possible and just focus on these private variables.
    – ticktock
    Nov 8 at 15:19






  • 1




    Aparently Doxygen has an XML output format that may be easier to parse: doxygen.org/manual/output.html
    – Galik
    Nov 8 at 15:20






  • 1




    Also you could maybe use clang to dump out the AST and parse that. stackoverflow.com/questions/18560019/how-to-view-clang-ast
    – Galik
    Nov 8 at 15:26






  • 1




    With doxygen don't forget to set EXTRACT_PRIVATE, also look at the WARN... settings.
    – albert
    Nov 8 at 16:18














up vote
0
down vote

favorite
1












I have a large cpp code base to work with. There are several dozens of class header files. All these files have private member variables usually a vector/pair/lists of other classes. I don't have useful documentation either (duh!). To reason with this unfamiliar code base I need to have a list of all the classes and their private data members alone. I want to ignore all the member functions as of now as they are simply manipulating the data structures of private variables.I don't want to run some code documentation tool and generate bunch of html pages.



Is there a way to pull out just these private member variables and build a simple table.
eg:



| MyRoad.h | Bus.h | Van.h | People.h |
|-------------+--------------+--------------+-------------|
| vector<Bus> | list<People> | list<People> | String name |
| vector<Van> | | | String age |









share|improve this question













closed as off-topic by Some programmer dude, Galik, genpfault, SRack, user6910411 Nov 8 at 20:52


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Some programmer dude, Galik, genpfault, user6910411
If this question can be reworded to fit the rules in the help center, please edit the question.








  • 2




    "I don't want to run some code documentation tool and generate bunch of html pages" - Other than "code documentation tools" I can't think of anything that would document your code for you tbh. The output of such tools is likely easy(ish) to parse and tabulate.
    – Galik
    Nov 8 at 15:15











  • @Galik okay, we can go code-doc tool route too, no problem. I just wanted something with less noise and precise. I want to ignore as much as possible and just focus on these private variables.
    – ticktock
    Nov 8 at 15:19






  • 1




    Aparently Doxygen has an XML output format that may be easier to parse: doxygen.org/manual/output.html
    – Galik
    Nov 8 at 15:20






  • 1




    Also you could maybe use clang to dump out the AST and parse that. stackoverflow.com/questions/18560019/how-to-view-clang-ast
    – Galik
    Nov 8 at 15:26






  • 1




    With doxygen don't forget to set EXTRACT_PRIVATE, also look at the WARN... settings.
    – albert
    Nov 8 at 16:18












up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





I have a large cpp code base to work with. There are several dozens of class header files. All these files have private member variables usually a vector/pair/lists of other classes. I don't have useful documentation either (duh!). To reason with this unfamiliar code base I need to have a list of all the classes and their private data members alone. I want to ignore all the member functions as of now as they are simply manipulating the data structures of private variables.I don't want to run some code documentation tool and generate bunch of html pages.



Is there a way to pull out just these private member variables and build a simple table.
eg:



| MyRoad.h | Bus.h | Van.h | People.h |
|-------------+--------------+--------------+-------------|
| vector<Bus> | list<People> | list<People> | String name |
| vector<Van> | | | String age |









share|improve this question













I have a large cpp code base to work with. There are several dozens of class header files. All these files have private member variables usually a vector/pair/lists of other classes. I don't have useful documentation either (duh!). To reason with this unfamiliar code base I need to have a list of all the classes and their private data members alone. I want to ignore all the member functions as of now as they are simply manipulating the data structures of private variables.I don't want to run some code documentation tool and generate bunch of html pages.



Is there a way to pull out just these private member variables and build a simple table.
eg:



| MyRoad.h | Bus.h | Van.h | People.h |
|-------------+--------------+--------------+-------------|
| vector<Bus> | list<People> | list<People> | String name |
| vector<Van> | | | String age |






c++ documentation






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 8 at 15:09









ticktock

44559




44559




closed as off-topic by Some programmer dude, Galik, genpfault, SRack, user6910411 Nov 8 at 20:52


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Some programmer dude, Galik, genpfault, user6910411
If this question can be reworded to fit the rules in the help center, please edit the question.




closed as off-topic by Some programmer dude, Galik, genpfault, SRack, user6910411 Nov 8 at 20:52


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it." – Some programmer dude, Galik, genpfault, user6910411
If this question can be reworded to fit the rules in the help center, please edit the question.







  • 2




    "I don't want to run some code documentation tool and generate bunch of html pages" - Other than "code documentation tools" I can't think of anything that would document your code for you tbh. The output of such tools is likely easy(ish) to parse and tabulate.
    – Galik
    Nov 8 at 15:15











  • @Galik okay, we can go code-doc tool route too, no problem. I just wanted something with less noise and precise. I want to ignore as much as possible and just focus on these private variables.
    – ticktock
    Nov 8 at 15:19






  • 1




    Aparently Doxygen has an XML output format that may be easier to parse: doxygen.org/manual/output.html
    – Galik
    Nov 8 at 15:20






  • 1




    Also you could maybe use clang to dump out the AST and parse that. stackoverflow.com/questions/18560019/how-to-view-clang-ast
    – Galik
    Nov 8 at 15:26






  • 1




    With doxygen don't forget to set EXTRACT_PRIVATE, also look at the WARN... settings.
    – albert
    Nov 8 at 16:18












  • 2




    "I don't want to run some code documentation tool and generate bunch of html pages" - Other than "code documentation tools" I can't think of anything that would document your code for you tbh. The output of such tools is likely easy(ish) to parse and tabulate.
    – Galik
    Nov 8 at 15:15











  • @Galik okay, we can go code-doc tool route too, no problem. I just wanted something with less noise and precise. I want to ignore as much as possible and just focus on these private variables.
    – ticktock
    Nov 8 at 15:19






  • 1




    Aparently Doxygen has an XML output format that may be easier to parse: doxygen.org/manual/output.html
    – Galik
    Nov 8 at 15:20






  • 1




    Also you could maybe use clang to dump out the AST and parse that. stackoverflow.com/questions/18560019/how-to-view-clang-ast
    – Galik
    Nov 8 at 15:26






  • 1




    With doxygen don't forget to set EXTRACT_PRIVATE, also look at the WARN... settings.
    – albert
    Nov 8 at 16:18







2




2




"I don't want to run some code documentation tool and generate bunch of html pages" - Other than "code documentation tools" I can't think of anything that would document your code for you tbh. The output of such tools is likely easy(ish) to parse and tabulate.
– Galik
Nov 8 at 15:15





"I don't want to run some code documentation tool and generate bunch of html pages" - Other than "code documentation tools" I can't think of anything that would document your code for you tbh. The output of such tools is likely easy(ish) to parse and tabulate.
– Galik
Nov 8 at 15:15













@Galik okay, we can go code-doc tool route too, no problem. I just wanted something with less noise and precise. I want to ignore as much as possible and just focus on these private variables.
– ticktock
Nov 8 at 15:19




@Galik okay, we can go code-doc tool route too, no problem. I just wanted something with less noise and precise. I want to ignore as much as possible and just focus on these private variables.
– ticktock
Nov 8 at 15:19




1




1




Aparently Doxygen has an XML output format that may be easier to parse: doxygen.org/manual/output.html
– Galik
Nov 8 at 15:20




Aparently Doxygen has an XML output format that may be easier to parse: doxygen.org/manual/output.html
– Galik
Nov 8 at 15:20




1




1




Also you could maybe use clang to dump out the AST and parse that. stackoverflow.com/questions/18560019/how-to-view-clang-ast
– Galik
Nov 8 at 15:26




Also you could maybe use clang to dump out the AST and parse that. stackoverflow.com/questions/18560019/how-to-view-clang-ast
– Galik
Nov 8 at 15:26




1




1




With doxygen don't forget to set EXTRACT_PRIVATE, also look at the WARN... settings.
– albert
Nov 8 at 16:18




With doxygen don't forget to set EXTRACT_PRIVATE, also look at the WARN... settings.
– albert
Nov 8 at 16:18

















active

oldest

votes






















active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes

Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)