1 #ifndef STLPTRWRAPPER_H 2 #define STLPTRWRAPPER_H 38 friend ostream& operator << ( ostream& os, stlPtrWrapper<Type>& a ) {
43 friend ostream& operator << ( ostream& os, stlPtrWrapper<Type>* a ) {
50 return (xw1.operator()() && xw2.operator()()) ? xw1() == xw2() :
false;
53 friend bool operator < (const stlPtrWrapper<Type>& xw1,
55 return (xw1() && xw2()) ? xw1() < xw2() :
false;
77 const Type operator( ) ()
const {
return val; }
79 Type operator( ) () {
return val; }
Definition: stlPtrWrapper.h:36