0.2.0
Loading...
Searching...
No Matches
GroupBox.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
17
18namespace NAV
19{
21class GroupBox : public Node
22{
23 public:
27 ~GroupBox() override;
29 GroupBox(const GroupBox&) = delete;
31 GroupBox(GroupBox&&) = delete;
33 GroupBox& operator=(const GroupBox&) = delete;
36
38 [[nodiscard]] static std::string typeStatic();
39
41 [[nodiscard]] std::string type() const override;
42
44 [[nodiscard]] static std::string category();
45
47 [[nodiscard]] json save() const override;
48
51 void restore(const json& j) override;
52};
53
54} // namespace NAV
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Group Box.
Definition GroupBox.hpp:22
GroupBox(const GroupBox &)=delete
Copy constructor.
std::string type() const override
String representation of the Class Type.
GroupBox()
Default constructor.
GroupBox & operator=(const GroupBox &)=delete
Copy assignment operator.
void restore(const json &j) override
Restores the node from a json object.
~GroupBox() override
Destructor.
GroupBox & operator=(GroupBox &&)=delete
Move assignment operator.
json save() const override
Saves the node into a json object.
static std::string typeStatic()
String representation of the Class Type.
GroupBox(GroupBox &&)=delete
Move constructor.
static std::string category()
String representation of the Class Category.
Abstract parent class for all nodes.
Definition Node.hpp:86