views:

91

answers:

2

Are there any tools that are able to do code metrics on Pro*C++ sources?

I haven't been able to find anything specific via Google.

Does anyone have any experience with this?

Thanks.

A: 

proc can generate valid C++ files, for code metrics tools on standard c++ Google is your friend.

Shay Erlichmen
Yes, that is true. However, the generated c++ files are not what we do maintenance on. It is an interesting suggestion. I will pass it on.
EvilTeach
A: 

Semantic Designs offers a search engine for searching across large systems of code. To do so, it indexes the code, thus scanning it. As a side effect of scanning code, it computes SLOC, comment count, cyclomatic and halstead complexity numbers. The scanner for C++ is pretty robust and would likely swallow ProC++ with few complaints (and this is ok when scanning for indexing purposes anyway). So, the Search Engine and its C++ scanner would very likely give you this information. See http://www.semanticdesigns.com/Products/SearchEngine

Ira Baxter
interesting. i will check it out, thanks.
EvilTeach