* @brief Returns whether the database is currently open. */
| 615 | * @brief Returns whether the database is currently open. |
| 616 | */ |
| 617 | bool Sessions::Export::isOpen() const |
| 618 | { |
| 619 | return m_isOpen.load(std::memory_order_relaxed); |
| 620 | } |
| 621 | |
| 622 | /** |
| 623 | * @brief Returns whether SQLite export is enabled. |
no test coverage detected