/usr/include/opencascade/TColStd_HPackedMapOfInteger.lxx is in libopencascade-foundation-dev 6.5.0.dfsg-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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;
}
|