This file is indexed.

/usr/include/opencascade/TCollection_HAsciiString.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
17
18
19
20
21
22
23
24
25
26
27
28
29
// ---------------------------------------------------------------------------
// AssignCat
// ----------------------------------------------------------------------------
inline void TCollection_HAsciiString::AssignCat(const Standard_CString other) 
{myString.AssignCat(other);}

// ---------------------------------------------------------------------------
// AssignCat
// ----------------------------------------------------------------------------
inline void TCollection_HAsciiString::AssignCat
                      (const Handle(TCollection_HAsciiString)& other) 
{myString.AssignCat(other->String());}


// ----------------------------------------------------------------------------
// Length
// ----------------------------------------------------------------------------
inline Standard_Integer TCollection_HAsciiString::Length() const
{return myString.mylength;}

// ----------------------------------------------------------------------------
// String
// ----------------------------------------------------------------------------
inline const TCollection_AsciiString& TCollection_HAsciiString::String() const
{return myString;}

// ----------------------------------------------------------------------------
inline Standard_CString TCollection_HAsciiString::ToCString() const
{ return myString.ToCString(); }