AR2V file should be in wsr88d, not in RPG subdirectory

This commit is contained in:
Dan Paulat 2021-06-13 18:11:55 -05:00
parent 85ccd25705
commit f36d57b71d
6 changed files with 21 additions and 24 deletions

View file

@ -1,40 +0,0 @@
#pragma once
#include <memory>
#include <string>
namespace scwx
{
namespace wsr88d
{
namespace rpg
{
class Ar2vFileImpl;
/**
* @brief The Archive II file is specified in the Interface Control Document for
* the Archive II/User, Document Number 2620010H, published by the WSR-88D Radar
* Operations Center.
*/
class Ar2vFile
{
public:
explicit Ar2vFile();
~Ar2vFile();
Ar2vFile(const Ar2vFile&) = delete;
Ar2vFile& operator=(const Ar2vFile&) = delete;
Ar2vFile(Ar2vFile&&) noexcept;
Ar2vFile& operator=(Ar2vFile&&);
bool LoadFile(const std::string& filename);
private:
std::unique_ptr<Ar2vFileImpl> p;
};
} // namespace rpg
} // namespace wsr88d
} // namespace scwx