WSF
Corridor.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 2019 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 CORRIDOR_HPP
13#define CORRIDOR_HPP
14
15#include "usmtf_export.h"
16
17#include <memory>
18#include <string>
19
20#include "Field.hpp"
21#include "LatLon.hpp"
22#include "Radius.hpp"
23#include "Set.hpp"
24#include "UtLLPos.hpp"
25
26namespace usmtf
27{
39
42
46
49class USMTF_EXPORT Corridor : public Set
50{
51public:
52 Corridor(const std::string& aSTF, const std::vector<Field>& aFields) noexcept;
53 const Radius& GetWidth() const noexcept;
54 const std::vector<LatLon>& GetPoints() const noexcept;
55
56private:
57 bool AreAllPointsValid();
58 Radius mWidth;
59 std::vector<LatLon> mPoints;
60};
61} // namespace usmtf
62
63#endif
const Radius & GetWidth() const noexcept
Definition Corridor.cpp:42
Corridor(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Corridor.cpp:21
const std::vector< LatLon > & GetPoints() const noexcept
Definition Corridor.cpp:47
USMTF Excerpt:
Definition Radius.hpp:44
Set(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Set.cpp:22
Definition Acmid.cpp:17
Copyrights Multiple, All Rights Reserved