File: cmdline_parser.hpp

package info (click to toggle)
xmlrpc-c 1.60.05-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,132 kB
  • sloc: ansic: 55,332; cpp: 13,541; sh: 3,321; makefile: 2,556; perl: 593; xml: 134
file content (59 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef CMDLINE_PARSER_HPP_INCLUDED
#define CMDLINE_PARSER_HPP_INCLUDED

#include <string>

struct cmdlineParserCtl;

class CmdlineParser {
public:
    CmdlineParser();

    ~CmdlineParser();

    enum optType {FLAG, INT, UINT, STRING, BINUINT, FLOAT};

    void
    defineOption(std::string const optionName,
                 optType     const optionType);

    void
    processOptions(int           const argc,
                   const char ** const argv);

    bool
    optionIsPresent(std::string const optionName) const;

    int
    getOptionValueInt(std::string const optionName) const;

    unsigned int
    getOptionValueUint(std::string const optionName) const;

    std::string
    getOptionValueString(std::string const optionName) const;
    
    unsigned long long
    getOptionValueBinUint(std::string const optionName) const;

    double
    getOptionValueFloat(std::string const optionName) const;

    unsigned int
    argumentCount() const;

    std::string
    getArgument(unsigned int const argNumber) const;

private:
    struct cmdlineParserCtl * cp;

    // Make sure no one can copy this object, because if there are two
    // copies, there will be two attempts to destroy *cp.
    CmdlineParser(CmdlineParser const&) {};

    CmdlineParser&
    operator=(CmdlineParser const&) {return *this;}
};

#endif