diff options
| author | Loic GUEGAN <loic@debian> | 2015-03-08 09:08:21 +0400 |
|---|---|---|
| committer | Loic GUEGAN <loic@debian> | 2015-03-08 09:08:21 +0400 |
| commit | c7dd5225b80960d3b47e76f16d4e9a06657e4b86 (patch) | |
| tree | 1a43ffdd60c21b338794df4d2aff187f3d5191b8 /main.cpp | |
| parent | bbfdf67777b9f78bdd5592b863d93b0448ce2fd3 (diff) | |
Switch to doxygen comments, and english comments.
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 29 |
1 files changed, 25 insertions, 4 deletions
@@ -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 <iostream> #include <string> -//----- 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[]){ |
