This project was created with the aim of create c++ classes automatically, both the headers and their respective cpp. The program must be executed as follows:
coder [readFile] [savePath] [1 = with CPP]
readFile: Path of your C++ classes
savePath: Directory where the files will be saved
1: If the 4th parameter is 1. The coder will create cpp files and hpp files and with another value, the coder only create the hpp files
class Persona
int edad
string nombre
string apellido
coder clases.txt "c:\user\test"
The output will generate the Person header with its attributes and mutators