vega
regex_string.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <regex>
5 #include <memory>
6 
7 namespace vega {
8  class RegexString {
9  private:
10  const std::shared_ptr<const std::regex> m_regex;
11  std::string m_str;
12 
13  public:
14  RegexString(const std::shared_ptr<const std::regex>& regex);
15  RegexString(const std::string& str, const std::shared_ptr<const std::regex>& regex);
16 
17  const std::string& str() const;
18  void set_str(const std::string& str);
19 
20  private:
21  void validate_regex() const;
22  };
23 }
const std::string & str() const
Definition: regex_string.h:8
RegexString(const std::shared_ptr< const std::regex > &regex)
Definition: age.h:6
void set_str(const std::string &str)