| 381 | } |
| 382 | |
| 383 | int Backend::managedAppCount() const { |
| 384 | int count = 0; |
| 385 | for (const auto &app : m_apps) { |
| 386 | if (app.isLocal && !app.name.contains("Soundtrack", Qt::CaseInsensitive)) |
| 387 | count++; |
| 388 | } |
| 389 | return count; |
| 390 | } |
| 391 | QString Backend::steamPath() const { return m_steamPath; } |
| 392 | QString Backend::storagePath() const { return m_storagePath; } |
| 393 | bool Backend::isDeployed() const { return m_deployed; } |
nothing calls this directly
no outgoing calls
no test coverage detected