blob: 75990d1b62b67b20ef20f756a8b4021d05cd762a (
plain)
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
|
#ifndef _OPTION_H
#define _OPTION_H
#include <list>
#include <string>
#include <exception>
#include "error.h"
typedef void (*handler_t)(const char * arg);
struct option_t {
const char * long_opt;
char short_opt;
bool wants_arg;
handler_t handler;
bool handled;
};
class option_error : public error {
public:
option_error(const std::string& reason) throw() : error(reason) {}
virtual ~option_error() throw() {}
};
bool process_option(option_t * options, const std::string& opt,
const char * arg = NULL);
void process_arguments(option_t * options, int argc, char ** argv,
const bool anywhere, std::list<std::string>& args);
void process_environment(option_t * options, char ** envp,
const std::string& tag);
#endif // _OPTION_H
|