missing symbols

2007-06-18 Thread costin_c
In the following code, compiled with g++ cls.cc -Wall -W -g3 -o cls why only only virtual functions f1, f2 and constructor is listed by nm. Only debugging symbols for virtual functions are included in executable output file ? //cls.cc #include iostream using namespace std; class test {

Re: missing symbols

2007-06-18 Thread costin_c
On 6/18/07, costin_c [EMAIL PROTECTED] wrote: In the following code, compiled with g++ cls.cc -Wall -W -g3 -o cls why only only virtual functions f1, f2 and constructor is listed by nm. Only debugging symbols for virtual functions are included in executable output file ? //cls.cc #include

classes visualizer

2007-03-28 Thread costin_c
Hello What application/tool can show inheritance tree of C++ classes, or list all classes from a source code, which g++ can compile without errors or warnings ?