blob: 3082de00d73e246ad49cac96cd91786ff9866522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// File: TColStd_HPackedMapOfInteger.lxx
// Created: Tue Dec 05 14:45:46 2006
// Author: Sergey KOCHETKOV
// Copyright: Open Cascade 2006
//! Access to the map
inline const TColStd_PackedMapOfInteger& TColStd_HPackedMapOfInteger::Map () const
{
return myMap;
}
//! Access to the map for modification
inline TColStd_PackedMapOfInteger& TColStd_HPackedMapOfInteger::ChangeMap ()
{
return myMap;
}
|