Salome HOME
Copyrights update
[modules/geom.git] / src / NMTDS / NMTDS_IndexRange.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 // File:        NMTDS_IndexRange.cxx
21 // Created:     Fri Nov 28 10:34:59 2003
22 // Author:      Peter KURNEV
23 //              <pkv@irinox>
24
25
26 #include <NMTDS_IndexRange.ixx>
27 //=======================================================================
28 //function :NMTDS_IndexRange::NMTDS_IndexRange
29 //purpose  : 
30 //=======================================================================
31   NMTDS_IndexRange::NMTDS_IndexRange()
32 :
33   myFirst(0),
34   myLast(0)
35 {
36 }
37 //=======================================================================
38 //function :SetFirst
39 //purpose  : 
40 //=======================================================================
41   void NMTDS_IndexRange::SetFirst(const Standard_Integer aFirst)
42 {
43   myFirst=aFirst;
44 }
45 //=======================================================================
46 //function :First
47 //purpose  : 
48 //=======================================================================
49   Standard_Integer NMTDS_IndexRange::First()const
50 {
51   return myFirst;
52 }
53 //=======================================================================
54 //function :SetLast
55 //purpose  : 
56 //=======================================================================
57   void NMTDS_IndexRange::SetLast(const Standard_Integer aLast)
58 {
59   myLast=aLast;
60 }
61 //=======================================================================
62 //function :Last
63 //purpose  : 
64 //=======================================================================
65   Standard_Integer NMTDS_IndexRange::Last()const
66 {
67   return myLast;
68 }
69 //=======================================================================
70 //function :IsInRange
71 //purpose  : 
72 //=======================================================================
73   Standard_Boolean NMTDS_IndexRange::IsInRange(const Standard_Integer aIndex)const
74 {
75   return (Standard_Boolean)(aIndex>=myFirst && aIndex<=myLast);
76 }