| 5 | #include <QTextStream> |
| 6 | |
| 7 | UserScript::UserScript() : |
| 8 | m_name(), |
| 9 | m_namespace(), |
| 10 | m_description(), |
| 11 | m_version(), |
| 12 | m_noSubFrames(false), |
| 13 | m_isEnabled(true), |
| 14 | m_injectionTime(ScriptInjectionTime::DocumentEnd), |
| 15 | m_includes(), |
| 16 | m_excludes(), |
| 17 | m_dependencies(), |
| 18 | m_scriptData(), |
| 19 | m_dependencyData() |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | const QString &UserScript::getName() const |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected