Line |
Branch |
Exec |
Source |
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 |
|
|
|
9 |
|
|
/// @file Keys.cpp |
10 |
|
|
/// @brief Keys for the SPP algorithm for use inside the KeyedMatrices |
11 |
|
|
/// @author T. Topp (topp@ins.uni-stuttgart.de) |
12 |
|
|
/// @date 2024-02-12 |
13 |
|
|
|
14 |
|
|
#include "Keys.hpp" |
15 |
|
|
|
16 |
|
|
#include <iostream> |
17 |
|
|
|
18 |
|
✗ |
std::ostream& operator<<(std::ostream& os, const NAV::SPP::Meas::Psr& obj) |
19 |
|
|
{ |
20 |
|
✗ |
return os << fmt::format("{}", obj); |
21 |
|
|
} |
22 |
|
✗ |
std::ostream& operator<<(std::ostream& os, const NAV::SPP::Meas::Doppler& obj) |
23 |
|
|
{ |
24 |
|
✗ |
return os << fmt::format("{}", obj); |
25 |
|
|
} |
26 |
|
✗ |
std::ostream& operator<<(std::ostream& os, const NAV::SPP::States::StateKeyType& obj) |
27 |
|
|
{ |
28 |
|
✗ |
return os << fmt::format("{}", obj); |
29 |
|
|
} |
30 |
|
✗ |
std::ostream& operator<<(std::ostream& os, const NAV::SPP::Meas::MeasKeyTypes& obj) |
31 |
|
|
{ |
32 |
|
✗ |
return os << fmt::format("{}", obj); |
33 |
|
|
} |
34 |
|
|
|