Disabling features from a CPP file

I am using Visual Studio 2005, VB. I need to parse a CPP file and list all the functions called in that CPP file. Is there a built-in object that can make my job easier, or do I need to search () and then figure out the function calls? It's also a bit tricky (I suppose) because there are many chaining functions. Pls help me.

0


a source to share


1 answer


The only way to reliably accomplish this is to parse all the C ++ files, as neither regexes nor string manipulation can tell the difference between ()

calling a function without parameters and overloading operator ()

and calling a constructor.



0


a source







All Articles