summaryrefslogtreecommitdiff
path: root/src/options.h
blob: 11bf896bed0365ba1ecae5a7dead64e77cbe7c7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef OPTIONS_H
#define OPTIONS_H

#include <bu/optparser.h>

class Options : public Bu::OptParser
{
public:
    Options( int argc, char *argv[] );
    virtual ~Options();

private:
    int selfTest( Bu::StringArray aArgs );
    int textPrimes( Bu::StringArray aArgs );
};

#endif