inline Standard_CString ShallowCopy (const Standard_CString Value);
 inline Standard_Boolean IsSimilar(const Standard_CString One
                                 ,const Standard_CString Two);
-inline Standard_Boolean IsEqual(const Standard_CString One
-                              ,const Standard_CString Two);
 __Standard_API Standard_Integer HashCode (const Standard_CString,
                            const Standard_Integer);
 inline Standard_Integer HashCode (const Standard_CString,
   return (strcmp(One,Two) == 0);
 }
 
-//============================================================================
-// IsEqual : Returns Standard_True if two CString have the same value
-//============================================================================
-inline Standard_Boolean IsEqual(const Standard_CString One
-                              ,const Standard_CString Two)
-{ 
-  return (One == Two);
-}
-
 //============================================================================
 //==== HashCode of CString. Returns the HashCode itself and
 //====                              the HashCode % Upper
 
 //============================================================================
 __Standard_API Standard_Integer HashCode (const Standard_ExtString, const Standard_Integer);
 
-//============================================================================
-//==== IsSimilar : Returns Standard_True if two booleans have the same value
-//============================================================================
-inline Standard_Boolean IsSimilar(const Standard_ExtString One
-                                ,const Standard_ExtString Two)
-{ return One == Two; }
-
-//============================================================================
-// IsEqual : Returns Standard_True if two ExtString have the same value
-//============================================================================
-inline Standard_Boolean IsEqual(const Standard_ExtString One
-                              ,const Standard_ExtString Two)
-{ return One == Two; }
-
-
 #endif
-
-
-
-
-
-