27 #ifndef _CEGUIRefCounted_h_
28 #define _CEGUIRefCounted_h_
62 d_count((ob != 0) ? new unsigned int(1) : 0)
71 d_object(other.d_object),
72 d_count(other.d_count)
102 d_object = other.d_object;
103 d_count = d_object ? other.d_count : 0;
119 return d_object == other.d_object;
129 return d_object != other.d_object;
167 return d_object != 0;
190 CEGUI_DELETE_AO d_object;
200 unsigned int* d_count;
205 #endif // end of guard _CEGUIRefCounted_h_