/usr/lib/bouml/xmi2import/158083.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 | class UmlDestroyObjectAction
!!!304771.cpp!!! init() : void
declareFct("node", "uml:DestroyObjectAction", &importIt);
declareFct("containednode", "uml:DestroyObjectAction", &importIt);
!!!304643.cpp!!! importIt(inout in : FileIn, inout token : Token, inout where : UmlItem) : void
where = where->container(aDestroyObjectAction, token, in);
if (where != 0) {
QCString s = token.valueOf("name");
UmlDestroyObjectAction * a = create(where, s);
if (a == 0)
in.error("cannot create destroy object action '"
+ s + "' in '" + where->name() + "'");
a->addItem(token.xmiId(), in);
if (token.valueOf("isdestroylinks") == "true")
a->set_isDestroyLinks(TRUE);
if (token.valueOf("isdestroyownedobjects") == "true")
a->set_isDestroyOwnedObjects(TRUE);
a->import_it(in, token);
}
|