Re: How to identify object of a class defined in library file

2014-09-08 Thread Swati Rathi
I am referring to C++ standard library files. Statement : cout << "\tB:f" << endl; is translated as : struct basic_ostream & D.2782; struct basic_ostream & D.2781; : D.2782_1 = operator<< (&cout, "\tB:f"); D.2781_2 = D.2782_1; operator<< (D.2781_2, endl); I want to ignore variables

Re: How to identify object of a class defined in library file

2014-09-08 Thread Jonathan Wakely
On 8 September 2014 11:53, Swati Rathi wrote: > > How to identify object of a class which is defined in the library file? > > For e.g. > struct basic_ostream & D.2782; > > > Variable D.2782 is object of class which is part of the library file. > How can we identify such a variable? Repeating the