This file is indexed.

/usr/include/opencascade/Message_PrinterOStream.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// File:      Message_PrinterOStream.lxx
// Created:   28.06.07 14:31:55
// Author:    Pavel TELKOV
// Copyright: Open CASCADE S.A. 2007

#include <Message_PrinterOStream.hxx>

//=======================================================================
//function : GetTraceLevel
//purpose  : 
//=======================================================================

inline Message_Gravity Message_PrinterOStream::GetTraceLevel() const
{
  return myTraceLevel;
}

//=======================================================================
//function : SetTraceLevel
//purpose  : 
//=======================================================================

inline void Message_PrinterOStream::SetTraceLevel (const Message_Gravity theTraceLevel)
{
  myTraceLevel = theTraceLevel;
}

//=======================================================================
//function : GetUseUtf8
//purpose  : 
//=======================================================================

inline Standard_Boolean Message_PrinterOStream::GetUseUtf8() const
{
  return myUseUtf8;
}

//=======================================================================
//function : SetUseUtf8
//purpose  : 
//=======================================================================

inline void Message_PrinterOStream::SetUseUtf8 (const Standard_Boolean useUtf8)
{
  myUseUtf8 = useUtf8;
}

//=======================================================================
//function : GetStream
//purpose  : 
//=======================================================================

inline Standard_OStream& Message_PrinterOStream::GetStream () const
{
  return *(Standard_OStream*)myStream;
}