mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:00:05 +00:00
Warnings provider to access warnings text products
This commit is contained in:
parent
d5d9285736
commit
a2616b0ee0
7 changed files with 301 additions and 6 deletions
|
|
@ -67,7 +67,7 @@ bool TextProductFile::LoadFile(const std::string& filename)
|
|||
|
||||
bool TextProductFile::LoadData(std::istream& is)
|
||||
{
|
||||
logger_->debug("Loading Data");
|
||||
logger_->trace("Loading Data");
|
||||
|
||||
while (!is.eof())
|
||||
{
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ public:
|
|||
WmoHeader::WmoHeader() : p(std::make_unique<WmoHeaderImpl>()) {}
|
||||
WmoHeader::~WmoHeader() = default;
|
||||
|
||||
WmoHeader::WmoHeader(WmoHeader&&) noexcept = default;
|
||||
WmoHeader::WmoHeader(WmoHeader&&) noexcept = default;
|
||||
WmoHeader& WmoHeader::operator=(WmoHeader&&) noexcept = default;
|
||||
|
||||
bool WmoHeader::operator==(const WmoHeader& o) const
|
||||
|
|
@ -139,7 +139,7 @@ bool WmoHeader::Parse(std::istream& is)
|
|||
|
||||
if (is.eof())
|
||||
{
|
||||
logger_->debug("Reached end of file");
|
||||
logger_->trace("Reached end of file");
|
||||
headerValid = false;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue