blob: 2286633fcea3e695c7c1e7fd09d3bfba05135e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
inline IntSurf_Couple::IntSurf_Couple() :
firstInteger(0),secondInteger(0)
{}
inline IntSurf_Couple::IntSurf_Couple(const Standard_Integer Index1,
const Standard_Integer Index2):
firstInteger(Index1),secondInteger(Index2)
{}
inline Standard_Integer IntSurf_Couple::First() const
{
return firstInteger;
}
inline Standard_Integer IntSurf_Couple::Second() const {
return secondInteger;
}
|