1
0
This repository has been archived on 2024-11-25. You can view files and clone it, but cannot push or open issues or pull requests.

28 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* sed.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 <string>
class Sed {
private:
std::string _outFileName;
std::string _content;
public:
Sed(std::string &inFile, std::string &s1, std::string &s2);
~Sed(void);
};