vega
date.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <memory>
5 #include <regex>
6 
7 namespace vega {
8  class RegexString;
9 
10  class Date {
11  private:
12  static const std::shared_ptr<const std::regex> SINGLE_DATE_REGEX;
13  static const std::shared_ptr<const std::regex> DATE_RANGE_REGEX;
14 
15  // Can either be single time
16  std::shared_ptr<const RegexString> m_date;
17  // Or a range of Dates
18  std::shared_ptr<const Date> m_lower;
19  std::shared_ptr<const Date> m_upper;
20 
21  public:
22  explicit Date(const std::string& s);
23  Date(const std::shared_ptr<Date>& lower, const std::shared_ptr<Date>& upper);
24 
25  bool is_range() const;
26  const std::shared_ptr<const Date>& lower() const;
27  const std::shared_ptr<const Date>& upper() const;
28 
29  bool operator==(const Date& other) const;
30  bool operator!=(const Date& other) const;
31 
32  std::string str() const;
33  void set_string(const std::string& s);
34  };
35 }
Date(const std::string &s)
const std::shared_ptr< const Date > & lower() const
bool operator==(const Date &other) const
bool is_range() const
std::string str() const
void set_string(const std::string &s)
Definition: date.h:10
const std::shared_ptr< const Date > & upper() const
Definition: age.h:6
bool operator!=(const Date &other) const