Calibrator  0.1
Command line tool for 14C calibration
cal_date_list.h
Go to the documentation of this file.
1 
19 #ifndef _cal_date_list_h_
20 #define _cal_date_list_h_
21 
22 #include "cal_date.h"
23 #include <vector>
24 
25 using namespace std;
26 
28  public:
29  CalDateList(vector<CalDate> dates);
30  CalDateList();
31  vector<CalDate> get_dates();
32  void push_back(CalDate date);
33  json to_json();
34  vector<CalDate> _dates;
35  string to_csv();
36  void sum();
37  private:
38 
39 };
40 
41 #endif
nlohmann::json json
Definition: cal_date.h:29
vector< CalDate > _dates
Definition: cal_date_list.h:34
Represents a calibrated date.
Definition: cal_date.h:33
Represents a list of calibrated dates.
Definition: cal_date_list.h:27