stocks / input.h
input.h
Raw
// Project identifier: 9504853406CBAC39EE89AA3AD238AA12CA198043
#include <queue>
#include <stack>
#include <deque>
#include <list>
#include <getopt.h>
#include <sstream>
#include <unistd.h>
#include <iostream>
#include <string>
#include <vector>
#include <stdio.h>
#include <ctype.h>
#include <algorithm>
#include "P2random.h"

using namespace std;

class Line_args {
    public:
    bool verbose;
    bool stats;
    bool median;
    uint32_t stats_num;
    Line_args(): verbose(false), stats(false), median(false), stats_num(0){}
};

//process command line
void process_cmd_line(int argc, char** argv, Line_args &line_args);