Tool to find all instances of a class

I am working on a project in C ++, where the modules must be combined in a small group to fulfill a specific goal (in some kind of processing pipeline).

It is sometimes difficult to understand the impact of any changes, because we do not even intuitively know all the places where one of our modules is used.

I know that I can search the files to find all instances of the class, but is there a tool that can analyze my source code and give me a list of how many instances of each class are used?

+3
source share
2 answers
+2

( ), printf/cout .

find -and- grep.

0

Source: https://habr.com/ru/post/1772041/


All Articles