| 25 | namespace Scripting { |
| 26 | |
| 27 | Tw::Scripting::ScriptObject::ScriptObject(std::unique_ptr<Script> &&script, QObject *parent) |
| 28 | : QObject(parent), m_script(std::move(script)) |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | } // namespace Scripting |
| 33 | } // namespace Tw |
nothing calls this directly
no outgoing calls
no test coverage detected