.. _program_listing_file_src_rdf4cpp_regex_RegexReplacer.hpp: Program Listing for File RegexReplacer.hpp ========================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/rdf4cpp/regex/RegexReplacer.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef RDF4CPP_RDF_REGEX_REGEXREPLACER_HPP #define RDF4CPP_RDF_REGEX_REGEXREPLACER_HPP #include #include namespace rdf4cpp::regex { struct RegexReplacer { using value_type = char; private: friend struct Regex; struct Impl; std::shared_ptr impl_; explicit RegexReplacer(std::shared_ptr impl) noexcept; public: void regex_replace(std::string &str) const; }; } //namespace rdf4cpp::regex #endif //RDF4CPP_RDF_REGEX_REGEXREPLACER_HPP