Parse RDA Status Data (Message Type 2)

This commit is contained in:
Dan Paulat 2021-06-20 11:15:35 -05:00
parent 517c77cb5f
commit 6acb6a8c9d
5 changed files with 408 additions and 1 deletions

View file

@ -52,7 +52,7 @@ Ar2vFile& Ar2vFile::operator=(Ar2vFile&&) noexcept = default;
bool Ar2vFile::LoadFile(const std::string& filename)
{
BOOST_LOG_TRIVIAL(debug) << logPrefix_ << "LoadFile(" << filename << ")\n";
BOOST_LOG_TRIVIAL(debug) << logPrefix_ << "LoadFile(" << filename << ")";
bool fileValid = true;
std::ifstream f(filename, std::ios_base::in | std::ios_base::binary);