CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: C++ advance

  1. #1
    Join Date
    Dec 2017
    Posts
    2

    C++ advance

    how to list down all classes form its sources along with its member variable and member function any one provide solution on that

  2. #2
    Join Date
    Feb 2017
    Posts
    677

    Re: C++ advance

    Quote Originally Posted by sand130287 View Post
    how to list down all classes form its sources along with its member variable and member function any one provide solution on that
    You mean a tool to automatically generate documentation from source code?

    https://en.wikipedia.org/wiki/Compar...ion_generators

  3. #3
    Join Date
    Dec 2017
    Posts
    2

    Re: C++ advance

    [QUOTE=wolle;2219387]You mean a tool to automatically generate documentation from source code?

    https://en.wikipedia.org/wiki/Compar...ion_generators[/


    Thanks for reply
    No Boss i just want to create a tool that show my class name and its member variable and member function?no documentation??

  4. #4
    Join Date
    Jun 2010
    Location
    Germany
    Posts
    2,675

    Re: C++ advance

    What's wrong with the Visual Studio IDE's Class View or Class Diagram fetures?
    I was thrown out of college for cheating on the metaphysics exam; I looked into the soul of the boy sitting next to me.

    This is a snakeskin jacket! And for me it's a symbol of my individuality, and my belief... in personal freedom.

  5. #5
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: C++ advance

    [QUOTE=sand130287;2219389]
    Quote Originally Posted by wolle View Post
    You mean a tool to automatically generate documentation from source code?

    https://en.wikipedia.org/wiki/Compar...ion_generators[/


    Thanks for reply
    No Boss i just want to create a tool that show my class name and its member variable and member function?no documentation??
    Tools that wrire out documentation as wolle suggested do what you are asking (plus a bit more). They parse the files and extract the classes and class members (as well as parse other things like comments, global variables and so forth).

    Unless this is a school project, there are plenty of tools out there you can avoid writing your own. In addition, as Eri523 mentioned, the VS IDE has class diagramming built right in.

  6. #6
    Join Date
    Nov 2017
    Posts
    18

    Re: C++ advance

    http://alexdp.free.fr/violetumleditor/page.php

    I suggest using violet uml editor to create uml diagrams, this you have to do manually, unless you're looking for automated tools?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured