blob: 5d164d6d92e587e4fb7a40c1135b271373b86894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright: Matra-Datavision 1992
// <mip@sdsun3>
// File: TCollection_CompareOfInteger.cxx
// Created: Thu Aug 27 12:06:34 1992
// Author: Mireille MERCIEN
#include <TCollection_CompareOfInteger.ixx>
// -----------
// Create :
// -----------
TCollection_CompareOfInteger::TCollection_CompareOfInteger()
{
}
// -----------
// IsLower :
// -----------
Standard_Boolean TCollection_CompareOfInteger::IsLower (
const Standard_Integer &Left,const Standard_Integer &Right) const
{
return (Left < Right) ;
}
// -----------
// IsGreater :
// -----------
Standard_Boolean TCollection_CompareOfInteger::IsGreater (
const Standard_Integer &Left,const Standard_Integer &Right) const
{
return (Left > Right) ;
}
|