Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8514225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:48:14+00:00 2026-06-11T04:48:14+00:00

Considering a C++ based source code i’m looking for a tool that can output

  • 0

Considering a C++ based source code i’m looking for a tool that can output a plain text list of methods with/without interfaces, this means 2 options, only the method’s name or the complete interface’s signature.

I would like to apply this to source code in C too.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T04:48:16+00:00Added an answer on June 11, 2026 at 4:48 am

    A reasonable solution cam be built easily using Doxygen’s XML format and a little python script to parse it. Doxygens XML output is not very well documented, but seems pretty complete.

    Here’s my python script:

    import lxml.etree
    import glob
    
    prefix = "/Code/stack_overflow_examples/list_functions_by_doxygen/"
    
    for filename in glob.glob("xml/*.xml"):
        f = open( filename, "r" )
        xml = lxml.etree.parse(f)
        for x in xml.xpath('//memberdef[@kind="function"]'):
            srcfile = x.xpath('.//location/@file')[0].replace(prefix,'') 
            srcline = x.xpath('.//location/@line')[0]
            definition = x.xpath('.//definition/text()')[0] 
            args = x.xpath('.//argsstring/text()')[0]
            print( "%s:%s: %s%s" % ( srcfile, srcline, definition, args) )
    

    When run on this file:

    /**
     * This is a test function.
     */
    int a_function( Baz & b )
    {
      return 7;
    }
    
    void another_function( Boo & b )
    {
    }
    
    class Foo
    {
      private:
        int a_private_member_function();
      public:
        int a_public_member_function();
    };
    

    It generates this output:

    test.cpp:16: int Foo::a_private_member_function()
    test.cpp:18: int Foo::a_public_member_function()
    test.cpp:5: int a_function(Baz &b)
    test.cpp:10: void another_function(Boo &b)
    

    You’ll just need to make a couple of changes to the Doxyfile you use to generate the “docs”.
    Here’s the changes I used:

    EXTRACT_ALL = YES
    EXTRACT_PRIVATE = YES
    EXTRACT_STATIC = YES
    EXTRACT_LOCAL_METHODS = YES
    EXTRACT_ANON_NSPACES = YES
    CASE_SENSE_NAMES = YES
    
    GENERATE_HTML = NO
    GENERATE_LATEX = NO
    GENERATE_XML = YES
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am considering creating a GUI-based tool that I want to be cross-platform. I've
My company (EU-based) is considering to release some parts of our code under a
Considering that simple java code which would not work: public class Bar extends AbstractBar{
Considering the code: <noscript><div>FOO</div></noscript> Running $('noscript').html(); returns &lt;div&gt;FOO&lt;/div&gt; but running $('noscript').text(); returns the raw
I am considering writing a C-based Ruby gem to speed up text wrapping in
I am considering starting a project so that I can learn more and keep
I'm considering making a text-based RPG-type program in PHP as both a holiday project
Considering this part of a Java class, private List<Object> components = new ArrayList<Object>(); private
Considering that I have a Schema named SBST I want to find all empty
Considering the boundaries of a List are known, does .Last() enumerate the collection? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.