modifs de l'installation automatique et ajouts configs files autofill cpp

This commit is contained in:
Hugo LAMY
2022-03-01 18:37:48 +01:00
parent 308b4c4fdc
commit 9af0f4b1ad
23 changed files with 603 additions and 197 deletions

31
config_files/skeleton.hpp Normal file
View File

@@ -0,0 +1,31 @@
#ifndef FILENAME_HPP
# define FILENAME_HPP
# include "color.h"
# include <iostream>
# include <string>
class FileName {
public:
FileName();
FileName( FileName const & src );
~FileName();
FileName & operator=( FileName const & rhs );
// std::string getFoo() const;
protected:
// std::string const _foo;
private:
// static std::string const FileName::_bar;
};
//std::ostream & operator<<(std::ostream & o, FileName const & rhs);
#endif