/*
Parse options. Need to rewrite using getopt()
*/

#ifndef PARSEOPT_H
#define PARSEOPT_H

#include "common.h"
#include "structdef.h"


/*
Parsing the parameters, setting up variables and structures
*/
int parseopt(vector<string> args);




#endif
