| 22 | SessionManager::~SessionManager() = default; |
| 23 | |
| 24 | Session *SessionManager::createSession() |
| 25 | { |
| 26 | auto *session = new Session(this); |
| 27 | m_sessions.append(session); |
| 28 | emit sessionCreated(session); |
| 29 | return session; |
| 30 | } |
| 31 | |
| 32 | Session *SessionManager::createSession(const QString &agentName, QString *errorOut) |
| 33 | { |
nothing calls this directly
no test coverage detected