0.2.0
Loading...
Searching...
No Matches
Terminator.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <array>
18
20
22#include "util/Eigen.hpp"
23
24namespace NAV
25{
27class Terminator : public Node
28{
29 public:
33 ~Terminator() override;
35 Terminator(const Terminator&) = delete;
39 Terminator& operator=(const Terminator&) = delete;
42
44 [[nodiscard]] static std::string typeStatic();
45
47 [[nodiscard]] std::string type() const override;
48
50 [[nodiscard]] static std::string category();
51
52 private:
53 constexpr static size_t INPUT_PORT_INDEX_FLOW = 0;
54
58 void receiveObs(InputPin::NodeDataQueue& queue, size_t pinIdx);
59};
60} // namespace NAV
Vector space operations.
The class is responsible for all time-related tasks.
Node Class.
Widget to modify time point values.
Abstract parent class for all nodes.
Definition Node.hpp:86
Terminator for open signals. Mainly used for test flows.
Definition Terminator.hpp:28
Terminator & operator=(Terminator &&)=delete
Move assignment operator.
Terminator(const Terminator &)=delete
Copy Constructor.
std::string type() const override
String representation of the Class Type.
static std::string typeStatic()
String representation of the Class Type.
Terminator(Terminator &&)=delete
Move Constructor.
Terminator & operator=(const Terminator &)=delete
Copy assignment operator.
~Terminator() override
Destructor.
static std::string category()
String representation of the Class Category.
Terminator()
Default constructor.