list initializer

This commit is contained in:
hugogogo
2022-02-07 14:47:39 +01:00
parent bb43bb40e8
commit 649b6168ef
5 changed files with 82 additions and 18 deletions

27
d01/ex04/Sed.hpp Normal file
View File

@@ -0,0 +1,27 @@
#ifndef SED_HPP
# define SED_HPP
#include <iostream>
#include <string>
#include <fstream>
class Sed {
public:
Sed(char *file, char *find, char *replacement);
~Sed();
void replace( void );
private:
// std::string _buf;
std::string const _file;
std::string const _new_file;
std::string const _find;
std::string const _replacement;
};
#endif