Switch to doxygen comments, and english comments.
This commit is contained in:
parent
bbfdf67777
commit
c7dd5225b8
5 changed files with 126 additions and 60 deletions
29
main.cpp
29
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 <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[]){
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue