From c7dd5225b80960d3b47e76f16d4e9a06657e4b86 Mon Sep 17 00:00:00 2001 From: Loic GUEGAN Date: Sun, 8 Mar 2015 09:08:21 +0400 Subject: Switch to doxygen comments, and english comments. --- main.cpp | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index fc3b22a..45f62de 100644 --- a/main.cpp +++ b/main.cpp @@ -1,19 +1,40 @@ -//----- Includes std ----- +/** + * @file main.cpp + * @brief Entry point + * @author manzerbredes + * @version Prototype + * @date 8 Mars 2015 + * + * Entry point of the application. + * + */ + + + +//----- std ----- #include #include -//----- Includes personnal Class ----- +//----- class ----- #include "CryptClass/HASHCrypt.hpp" + //----- Prototype ----- void aff(std::string chaine); -//----- Program Start ----- -int main(){ +/** + * @fn int main(int argc, char *argv[]) + * @author manzerbredes + * @brief main function + * @param argc contain *argv[] length + * @param *argv[] contain the arguments list + * @return Return code, an int. + */ +int main(int argc, char *argv[]){ -- cgit v1.2.3