/* ************************************************************************** */ /* */ /* :::::::: */ /* Replacer.hpp :+: :+: */ /* +:+ */ /* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/03/23 13:26:27 by whaffman #+# #+# */ /* Updated: 2025/03/23 14:04:08 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #pragma once #include class Replacer { private: std::string oldString; std::string newString; Replacer(); public: ~Replacer(); Replacer(std::string const &oldString, std::string const &newString); std::string process(std::string const &input) const; };