| 9 | QHash<QUuid, AnimScript*> AnimScript::scripts; |
| 10 | |
| 11 | AnimScript::AnimScript(QObject* parent, const QString& path) : |
| 12 | QObject(parent), _path(path), initialized(false), process(0) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | AnimScript::AnimScript(QObject* parent, const AnimScript& base) : |
| 17 | QObject(parent), _info(base._info), _path(base._path), initialized(false), process(0) |
nothing calls this directly
no outgoing calls
no test coverage detected