| 39 | }; |
| 40 | |
| 41 | class Regex { |
| 42 | private: |
| 43 | std::regex regexImpl; |
| 44 | const std::string regexString; |
| 45 | |
| 46 | public: |
| 47 | Regex(std::string expr); |
| 48 | |
| 49 | std::shared_ptr<RegexMatch> find(const std::string& expression) const; |
| 50 | std::shared_ptr<RegexMatch> findAll(const std::string& expression) const; |
| 51 | |
| 52 | std::string str() const; |
| 53 | }; |
| 54 | |
| 55 | } |
| 56 | } |
nothing calls this directly
no outgoing calls
no test coverage detected