diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-05-10 20:57:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 20:57:47 +0200 |
commit | 725310939d2b324d79ea4193a72000e21dcc1a2a (patch) | |
tree | e07390b682052129c91f4b157068bcdd84ceecb4 /include/openvic-dataloader/Parser.hpp | |
parent | 7211a228e68c8a6b1ad1c1c5ec68c8d720b6d2ba (diff) | |
parent | 757114a3c5b748567b42f273c7b78ca039ae983c (diff) |
Merge pull request #37 from OpenVicProject/add/dryad
Move to dryad library
Diffstat (limited to 'include/openvic-dataloader/Parser.hpp')
-rw-r--r-- | include/openvic-dataloader/Parser.hpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/openvic-dataloader/Parser.hpp b/include/openvic-dataloader/Parser.hpp new file mode 100644 index 0000000..c1f266b --- /dev/null +++ b/include/openvic-dataloader/Parser.hpp @@ -0,0 +1,31 @@ +#pragma once + +#include <string> +#include <string_view> + +#include <openvic-dataloader/ParseError.hpp> +#include <openvic-dataloader/ParseWarning.hpp> + +namespace ovdl::detail { + struct BasicParser { + BasicParser(); + + void set_error_log_to_null(); + void set_error_log_to_stderr(); + void set_error_log_to_stdout(); + void set_error_log_to(std::basic_ostream<char>& stream); + + bool has_error() const; + bool has_fatal_error() const; + bool has_warning() const; + + std::string_view get_file_path() const; + + protected: + std::reference_wrapper<std::ostream> _error_stream; + std::string _file_path; + bool _has_fatal_error = false; + bool _has_error = false; + bool _has_warning = false; + }; +}
\ No newline at end of file |