data_exporter_interface.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
26 
27 #include <corbo-core/console.h>
28 
29 namespace corbo {
30 
31 bool DataExporterInterface::exportSignalGroup(const std::string& filename, const CommonSignalTarget::SignalGroup& signal_group)
32 {
33  PRINT_ERROR_NAMED("SignalGroup is not supported for export.");
34  return false;
35 }
36 
37 bool DataExporterInterface::exportTimeSeriesSignal(const std::string& filename, const TimeSeriesSignal& signal)
38 {
39  PRINT_ERROR_NAMED("TimeSeriesSignal is not supported for export.");
40  return false;
41 }
42 
43 bool DataExporterInterface::exportTimeSeries(const std::string& filename, const TimeSeries& time_series)
44 {
45  PRINT_ERROR_NAMED("TimeSeries is not supported for export.");
46  return false;
47 }
48 
49 bool DataExporterInterface::exportTimeSeriesSequenceSignal(const std::string& filename, const TimeSeriesSequenceSignal& signal)
50 {
51  PRINT_ERROR_NAMED("TimeSeriesSequenceSignal is not supported for export.");
52  return false;
53 }
54 
56 {
57  PRINT_ERROR_NAMED("IndexedValuesSignal is not supported for export.");
58  return false;
59 }
60 
62 {
63  PRINT_ERROR_NAMED("IndexedValuesSetSignal is not supported for export.");
64  return false;
65 }
66 
67 bool DataExporterInterface::exportMatrixSignal(const std::string& filename, const MatrixSignal& signal)
68 {
69  PRINT_ERROR_NAMED("MatrixSignal is not supported for export.");
70  return false;
71 }
72 
73 bool DataExporterInterface::exportMatrixSetSignal(const std::string& filename, const MatrixSetSignal& signal)
74 {
75  PRINT_ERROR_NAMED("MatrixSetSignal is not supported for export.");
76  return false;
77 }
78 
79 } // namespace corbo
corbo::IndexedValuesSignal
Signal containing values indexed by a single integer.
Definition: signals.h:412
data_exporter_interface.h
PRINT_ERROR_NAMED
#define PRINT_ERROR_NAMED(msg)
Definition: console.h:260
corbo::DataExporterInterface::exportTimeSeriesSignal
virtual bool exportTimeSeriesSignal(const std::string &filename, const TimeSeriesSignal &signal)
Definition: data_exporter_interface.cpp:59
corbo::DataExporterInterface::exportMatrixSignal
virtual bool exportMatrixSignal(const std::string &filename, const MatrixSignal &signal)
Definition: data_exporter_interface.cpp:89
corbo
Definition: communication/include/corbo-communication/utilities.h:37
console.h
relicense.filename
filename
Definition: relicense.py:57
corbo::IndexedValuesSetSignal
Signal containing values indexed by an integer (int to double[] map)
Definition: signals.h:496
corbo::DataExporterInterface::exportIndexedValuesSetSignal
virtual bool exportIndexedValuesSetSignal(const std::string &filename, const IndexedValuesSetSignal &signal)
Definition: data_exporter_interface.cpp:83
corbo::MatrixSetSignal
Signal containing a set of matrices.
Definition: signals.h:629
corbo::DataExporterInterface::exportIndexedValuesSignal
virtual bool exportIndexedValuesSignal(const std::string &filename, const IndexedValuesSignal &signal)
Definition: data_exporter_interface.cpp:77
corbo::DataExporterInterface::exportSignalGroup
virtual bool exportSignalGroup(const std::string &filename, const CommonSignalTarget::SignalGroup &signal_group)
Definition: data_exporter_interface.cpp:53
corbo::DataExporterInterface::exportTimeSeriesSequenceSignal
virtual bool exportTimeSeriesSequenceSignal(const std::string &filename, const TimeSeriesSequenceSignal &signal)
Definition: data_exporter_interface.cpp:71
corbo::MatrixSignal
Signal containing a simple matrix.
Definition: signals.h:561
corbo::DataExporterInterface::exportTimeSeries
virtual bool exportTimeSeries(const std::string &filename, const TimeSeries &time_series)
Definition: data_exporter_interface.cpp:65
corbo::DataExporterInterface::exportMatrixSetSignal
virtual bool exportMatrixSetSignal(const std::string &filename, const MatrixSetSignal &signal)
Definition: data_exporter_interface.cpp:95


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:44