Skip to content
Snippets Groups Projects
main.cpp 345 B
Newer Older
  • Learn to ignore specific revisions
  • #include "stdafx.h"
    
    
    #include "entry.h"
    
    
    using namespace std;
    
    
    ///Standard main fuction
    ///@param[in] argc number of arguments
    ///@param[in] argv array of arguments
    ///@return int
    
    int main(int argc, char **argv)
    {
    	vector<string> args;
    
    	for (int i = 1; i < argc; i++)