This file is indexed.

/usr/lib/bouml/rose/8449.bodies is in bouml-plugouts-src 4.21-1.

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
class UmlUseCaseDiagram
!!!129793.cpp!!!	import(inout f : File, inout parent : UmlItem) : void
  QCString s;

  if (f.read(s) != STRING)
    f.syntaxError(s, "use case diagram's name");

  QCString id;
  QCString ste;
  QCString doc;
  QDict<QCString> prop;
  QCString s2;
  int k;
  
  do {
    k = f.readDefinitionBeginning(s2, id, ste, doc, prop);
  } while (id.isEmpty());

  UmlUseCaseDiagram * x;
  
  if (scanning) {
    if ((x = UmlBaseUseCaseDiagram::create(parent, s)) == 0) {
      UmlCom::trace("<br>cannot create use case diagram '" + s + "' in " +
		    parent->fullName());
      throw 0;
    }
    newItem(x, id);

    if (!doc.isEmpty())
      x->set_Description(doc);
    
    x->setProperties(prop);
  }
  else if ((x = (UmlUseCaseDiagram *) findItem(id, anUseCaseDiagram)) == 0) {
    UmlCom::trace("<br>unknown use case diagram '" + s + "' in " +
		  parent->fullName());
    throw 0;
  }
  
  f.unread(k, s2);
  // !!!!!!!!!!!!!!!!!!!!!!!
  f.skipBlock();