* @brief Returns whether a CSV file is currently open for writing. */
| 250 | * @brief Returns whether a CSV file is currently open for writing. |
| 251 | */ |
| 252 | bool CSV::Export::isOpen() const |
| 253 | { |
| 254 | return m_isOpen.load(std::memory_order_relaxed); |
| 255 | } |
| 256 | |
| 257 | /** |
| 258 | * @brief Returns whether CSV export is enabled. |
no test coverage detected