Warning, /include/opencascade/BOPDS_IndexRange.lxx is written in an unsupported language. File is not indexed.
0001 // Created by: Peter KURNEV
0002 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0003 //
0004 // This file is part of Open CASCADE Technology software library.
0005 //
0006 // This library is free software; you can redistribute it and/or modify it under
0007 // the terms of the GNU Lesser General Public License version 2.1 as published
0008 // by the Free Software Foundation, with special exception defined in the file
0009 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0010 // distribution for complete text of the license and disclaimer of any warranty.
0011 //
0012 // Alternatively, this file may be used under the terms of Open CASCADE
0013 // commercial license or contractual agreement.
0014
0015 //=======================================================================
0016 //function :
0017 //purpose :
0018 //=======================================================================
0019 inline BOPDS_IndexRange::BOPDS_IndexRange()
0020 :
0021 myFirst(0),
0022 myLast(0)
0023 {
0024 }
0025 //=======================================================================
0026 //function : SetFirst
0027 //purpose :
0028 //=======================================================================
0029 inline void BOPDS_IndexRange::SetFirst(const Standard_Integer aFirst)
0030 {
0031 myFirst=aFirst;
0032 }
0033 //=======================================================================
0034 //function : First
0035 //purpose :
0036 //=======================================================================
0037 inline Standard_Integer BOPDS_IndexRange::First()const
0038 {
0039 return myFirst;
0040 }
0041 //=======================================================================
0042 //function : SetLast
0043 //purpose :
0044 //=======================================================================
0045 inline void BOPDS_IndexRange::SetLast(const Standard_Integer aLast)
0046 {
0047 myLast=aLast;
0048 }
0049 //=======================================================================
0050 //function :Last
0051 //purpose :
0052 //=======================================================================
0053 inline Standard_Integer BOPDS_IndexRange::Last()const
0054 {
0055 return myLast;
0056 }
0057 //=======================================================================
0058 //function : SetIndices
0059 //purpose :
0060 //=======================================================================
0061 inline void BOPDS_IndexRange::SetIndices(const Standard_Integer theI1,
0062 const Standard_Integer theI2)
0063 {
0064 myFirst=theI1;
0065 myLast=theI2;
0066 }
0067 //=======================================================================
0068 //function : Indices
0069 //purpose :
0070 //=======================================================================
0071 inline void BOPDS_IndexRange::Indices(Standard_Integer& theI1,
0072 Standard_Integer& theI2)const
0073 {
0074 theI1=myFirst;
0075 theI2=myLast;
0076 }
0077
0078 //=======================================================================
0079 //function : Contains
0080 //purpose :
0081 //=======================================================================
0082 inline Standard_Boolean BOPDS_IndexRange::Contains(const Standard_Integer aIndex)const
0083 {
0084 return aIndex >= myFirst
0085 && aIndex <= myLast;
0086 }