A C program destined to make C++ classes faster following the orthodox canonical class form.
First clone the repository:
git clone https://github.com/Namonay/fastclass.git
cd fastclassThen use make to build and/or install the binary:
# Builds the 'class' binary make # Installs to local path make install
If you want to install to a custom path, you can input it as a make parameter:
# This is the default path make install INSTALL_PATH="$HOME/.local/bin"
The format for using fastclass is: class [-FLAGS] [FILES] ...
-fwill insert the 42Header in all classes created using NAME and MAIL defines.-pwill insertstd::coutoutput for the constructors and destructors.-screate the class as a static class, making all constructors privates.-hwill print this help.
You can use make remove to delete the binary file located in INSTALL_PATH.