blob: fd876873504e77dbd23101c41d1f3a199df85ff6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#include <iostream>
#include <ostream>
#include <openvic-dataloader/Parser.hpp>
#include "detail/NullBuff.hpp"
using namespace ovdl;
using namespace ovdl::detail;
BasicParser::BasicParser() : _error_stream(detail::cnull) {}
void BasicParser::set_error_log_to_null() {
set_error_log_to(detail::cnull);
}
void BasicParser::set_error_log_to_stderr() {
set_error_log_to(std::cerr);
}
void BasicParser::set_error_log_to_stdout() {
set_error_log_to(std::cout);
}
void BasicParser::set_error_log_to(std::basic_ostream<char>& stream) {
_error_stream = stream;
}
bool BasicParser::has_error() const {
return _has_error;
}
bool BasicParser::has_fatal_error() const {
return _has_fatal_error;
}
bool BasicParser::has_warning() const {
return _has_warning;
}
std::string_view BasicParser::get_file_path() const {
return _file_path;
}
|