Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Producing a list of all classes in a C++ project

I'm using Visual Studio 2008 (C++) and would like to produce a list of all classes that are defined in that project. Does anyone know tools that extract those easily?

A simple 'Find in files' will not be sufficient, of course.

Edit: The list of classes should be created automatically and the result should be a simple file of class names (one class each line).

like image 866
Andre Avatar asked Dec 03 '22 07:12

Andre


1 Answers

Doxygen will do that and loads more. Its a really good tool for producing all sorts of documentation

like image 165
Goz Avatar answered Dec 22 '22 08:12

Goz