summaryrefslogtreecommitdiff
path: root/src/Resource/Resource_LexicalCompare.cxx
blob: e5d9ced05a57a81069d7f54081a75794a268b36b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <TCollection_AsciiString.hxx>
#include <Resource_LexicalCompare.hxx>


// -----------
// Create :
// -----------

Resource_LexicalCompare::Resource_LexicalCompare()
{
}

// -----------
// IsLower :
// -----------

Standard_Boolean Resource_LexicalCompare::IsLower (
                 const TCollection_AsciiString& Left,
		 const TCollection_AsciiString& Right) const 
{
  return Left.IsLess(Right) ;
}