/usr/lib/bouml/rose/5377.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 | class UmlActualParameter
!!!128575.cpp!!! import(inout f : File, inout t : UmlTypeSpec) : void
f.read("object");
f.read("Parameter");
QCString s;
if (f.read(s) != STRING)
f.syntaxError(s, "actual's name");
for (;;) {
switch (f.read(s)) {
case ')':
return;
case ATOM:
break;
default:
f.syntaxError(s);
}
if (s == "type") {
if (f.read(t.explicit_type) != STRING)
f.syntaxError(t.explicit_type, "actual's value");
}
else if (s == "quidu") {
if (f.read(s) != STRING)
f.syntaxError("wrong quidu");
UmlClass * cl = (UmlClass *) UmlItem::findItem(s, aClass);
if (cl != 0) {
t.explicit_type = 0;
t.type = cl;
}
}
else
f.skipNextForm();
}
|