WSF
Geoline.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2020 Infoscitex, a DCS Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef GEOLINE_HPP
13#define GEOLINE_HPP
14
15#include "usmtf_export.h"
16
17#include <string>
18
19#include "Field.hpp"
20#include "LatLon.hpp"
21#include "Set.hpp"
22
23namespace usmtf
24{
30
33
36
41
44class USMTF_EXPORT Geoline : public Set
45{
46public:
47 Geoline(const std::string& aSTF, const std::vector<Field>& aFields) noexcept;
48 const std::vector<LatLon>& GetPoints() const noexcept;
49
50private:
51 bool AreAllPointsValid();
52 std::vector<LatLon> mPoints;
53};
54} // namespace usmtf
55
56#endif
const std::vector< LatLon > & GetPoints() const noexcept
Definition Geoline.cpp:36
Geoline(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Geoline.cpp:21
Set(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Set.cpp:22
Definition Acmid.cpp:17
Copyrights Multiple, All Rights Reserved