* @brief Load the log file * * This method parses the given file and stores the events internally. * If the file is not a valid log file or an error occurs, an exception * is thrown. */
| 377 | * is thrown. |
| 378 | */ |
| 379 | void load (const std::string &filename, bool no_spontaneous = false) |
| 380 | { |
| 381 | m_events.load (filename, no_spontaneous); |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * @brief Get the instance of the player |
no test coverage detected