blob: 3edd6e7c45d930c443ce69e393c007c008bcdc8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// File: IntTools_CArray1.lxx
// Created: Fri May 26 11:10:00 2000
// Author: Peter KURNEV
// <pkv@irinox>
#include <Standard_OutOfRange.hxx>
//=======================================================================
//function : Length
//purpose :
//=======================================================================
inline Standard_Integer IntTools_CArray1::Length() const
{
return myLength;
}
|