/usr/lib/bouml/xmi2import/145026.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 | class Signal
!!!221826.cpp!!! init() : void
UmlItem::declareFct("ownedmember", "uml:Signal", &importIt);
UmlItem::declareFct("packagedelement", "uml:Signal", &importIt);
UmlItem::declareFct("signal", "uml:Signal", &importIt);
!!!221954.cpp!!! importIt(inout in : FileIn, inout token : Token, inout where : UmlItem) : void
All.insert(token.xmiId(), token.valueOf("name"));
if (! token.closed())
in.finish(token.what());
!!!222082.cpp!!! get(in idref : string) : string
QMap<QCString, QCString>::Iterator iter = All.find(idref);
static QCString null_str;
return (iter == All.end()) ? null_str : *iter;
!!!222210.cpp!!! add(inout in : FileIn, inout token : Token, out name : string, out idref : string) : void
// token is <signal ...>
QCString t = token.xmiIdref();
if (! t.isEmpty()) {
QMap<QCString, QCString>::Iterator iter = All.find(t);
if (iter == All.end()) {
idref = t;
name = "";
}
else {
name = *iter;
idref = "";
}
}
else {
name = token.valueOf("name");
idref = "";
All.insert(token.xmiId(), name);
}
if (! token.closed())
in.finish(token.what());
|