Integration of OCCT 6.5.0 from SVN
[occt.git] / src / Resource / Resource_LexicalCompare.cxx
... / ...
CommitLineData
1#include <TCollection_AsciiString.hxx>
2#include <Resource_LexicalCompare.hxx>
3
4
5// -----------
6// Create :
7// -----------
8
9Resource_LexicalCompare::Resource_LexicalCompare()
10{
11}
12
13// -----------
14// IsLower :
15// -----------
16
17Standard_Boolean Resource_LexicalCompare::IsLower (
18 const TCollection_AsciiString& Left,
19 const TCollection_AsciiString& Right) const
20{
21 return Left.IsLess(Right) ;
22}
23