/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* sed.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/07 16:10:36 by adjoly #+# #+# */ /* Updated: 2024/11/07 18:36:27 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once # define fileExtension ".replace" # include class Sed { private: std::string _outFileName; std::string _content; public: Sed(std::string &inFile, std::string &s1, std::string &s2); ~Sed(void); };