28 #ifndef _CEGUIRefCounted_h_
29 #define _CEGUIRefCounted_h_
63 d_count((ob != 0) ? new unsigned int(1) : 0)
72 d_object(other.d_object),
73 d_count(other.d_count)
103 d_object = other.d_object;
104 d_count = d_object ? other.d_count : 0;
120 return d_object == other.d_object;
130 return d_object != other.d_object;
168 return d_object != 0;
191 CEGUI_DELETE_AO d_object;
201 unsigned int* d_count;
206 #endif // end of guard _CEGUIRefCounted_h_