/usr/lib/bouml/html/128164.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 | class FileWriter
!!!129188.cpp!!! open(in s : string) : bool
f = new QFile(s);
if (! f->open(IO_WriteOnly)) {
delete f;
return FALSE;
}
ts = new QTextStream(f);
return TRUE;
!!!129316.cpp!!! close() : void
f->flush();
f->close();
delete ts;
delete f;
f = 0;
ts = 0;
!!!128420.cpp!!! write(in s : string) : void
ts->writeRawBytes(s, s.length());
!!!128548.cpp!!! write(in s : str) : void
ts->writeRawBytes(s, strlen(s));
!!!128676.cpp!!! write(in c : char) : void
ts->writeRawBytes(&c, 1);
!!!128804.cpp!!! write(in n : unsigned) : void
QCString s;
s.setNum(n);
ts->writeRawBytes(s, s.length());
|