mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:50:04 +00:00
46 lines
982 B
C++
46 lines
982 B
C++
#pragma once
|
|
|
|
#include <scwx/common/geographic.hpp>
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <boost/range/any_range.hpp>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace awips
|
|
{
|
|
|
|
class CodedLocationImpl;
|
|
|
|
class CodedLocation
|
|
{
|
|
public:
|
|
typedef boost::any_range<std::string, boost::forward_traversal_tag>
|
|
StringRange;
|
|
|
|
explicit CodedLocation();
|
|
~CodedLocation();
|
|
|
|
CodedLocation(const CodedLocation&) = delete;
|
|
CodedLocation& operator=(const CodedLocation&) = delete;
|
|
|
|
CodedLocation(CodedLocation&&) noexcept;
|
|
CodedLocation& operator=(CodedLocation&&) noexcept;
|
|
|
|
std::vector<common::Coordinate> coordinates() const;
|
|
|
|
bool Parse(const StringRange& lines, const std::string& wfo = {});
|
|
|
|
static std::optional<CodedLocation> Create(const StringRange& lines,
|
|
const std::string& wfo = {});
|
|
|
|
private:
|
|
std::unique_ptr<CodedLocationImpl> p;
|
|
};
|
|
|
|
} // namespace awips
|
|
} // namespace scwx
|