path.hpp
Go to the documentation of this file.
1 #ifndef JULIAN_PATH_HPP
2 #define JULIAN_PATH_HPP
3 
4 #include <vector>
6 
7 namespace julian {
18  class Path {
19  public:
20  Path(){};
21  Path(TimeGrid , std::vector<double> );
22  std::vector<double> getValues();
23  private:
24  std::vector<double> values_;
26  };
27 } // namespace julian
28 
29 #endif
Class implements a TimeGrid object.
Definition: timeGrid.hpp:21
Path is a series of real numbers indexed with time. In general, it is identical with a series of time...
Definition: path.hpp:18
Definition: cadHoliday.cpp:3
File contains definition of TimeGrid class.
std::vector< double > getValues()
returns time series
Definition: path.cpp:12
TimeGrid time_
Time points indexing the values hold in values_ vector.
Definition: path.hpp:25
std::vector< double > values_
Vector holding data points.
Definition: path.hpp:24