DP3
ParameterRecord.h
Go to the documentation of this file.
1 // ParameterRecord.h: A record of parameter values
2 //
3 // Copyright (C) 2022 ASTRON (Netherlands Institute for Radio Astronomy)
4 // SPDX-License-Identifier: GPL-3.0-or-later
5 
6 #ifndef DP3_COMMON_PARAMETERRECORD_H_
7 #define DP3_COMMON_PARAMETERRECORD_H_
8 
9 #include "ParameterSet.h"
10 
11 namespace dp3 {
12 namespace common {
13 
16 class ParameterRecord : public ParameterSet {
17  public:
19  friend std::ostream& operator<<(std::ostream& os, const ParameterRecord&);
20 };
21 
22 } // namespace common
23 } // namespace dp3
24 
25 #endif
A record of parameter values. The only difference with a ParameterSet is the output operator.
Definition: ParameterRecord.h:16
friend std::ostream & operator<<(std::ostream &os, const ParameterRecord &)
Put to ostream.
Implements a map of Key-Value pairs.
Definition: ParameterSet.h:31
This file has generic helper routines for testing steps.
Definition: AntennaConfig.h:53