summaryrefslogtreecommitdiff
path: root/src/options.h
blob: 667e4869179a8459dce5304660b6d2c3d2a7421f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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 );
};

#endif