1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 // This file is part of Open CASCADE Technology software library.
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
14 //------------------------------------------------------------------------
16 //------------------------------------------------------------------------
17 inline Standard_Integer HashCode(const TCollection_ExtendedString& theString,
18 const Standard_Integer theUpper)
20 return TCollection_ExtendedString::HashCode(theString, theUpper);
23 //------------------------------------------------------------------------
25 //------------------------------------------------------------------------
26 inline Standard_Integer
27 TCollection_ExtendedString::HashCode (const TCollection_ExtendedString& theString,
28 const Standard_Integer theUpper)
30 return ::HashCode(theString.ToExtString(), theUpper);
33 //------------------------------------------------------------------------
35 //------------------------------------------------------------------------
36 inline Standard_Boolean
37 TCollection_ExtendedString::IsEqual (const TCollection_ExtendedString& theString1,
38 const TCollection_ExtendedString& theString2)
40 return theString1.IsEqual(theString2);
43 //------------------------------------------------------------------------
45 //------------------------------------------------------------------------
46 inline Standard_Boolean TCollection_ExtendedString::IsEmpty() const