blob: 29c16c67e0a325786f6eaa5783e161bde510fc9f (
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
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
60
61
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef _CMDLINE_HXX_
#define _CMDLINE_HXX_
#include "defs.hxx"
//---------------------------------
/** Simple command line abstraction
*/
class CommandLine
{
public:
// Creation
CommandLine(size_t argc, char* argv[]);
// Query
/** Returns an argument by name. If there are
duplicate argument names in the command line,
the first one wins.
Argument name an the argument value must be separated
by spaces. If the argument value starts with an
argument prefix use quotes else the return value is
an empty string because the value will be interpreted
as the next argument name.
If an argument value contains spaces use quotes.
@precond GetArgumentNames() -> has element ArgumentName
@throws std::invalid_argument exception
if the specified argument could not be
found
*/
std::string get_arg(const std::string& ArgumentName) const;
private:
/** Returns whether a given argument is an argument name
*/
bool is_arg_name(const std::string& Argument) const;
private:
size_t m_argc;
char** m_argv;
// prevent copy and assignment
private:
CommandLine(const CommandLine&);
CommandLine& operator=(const CommandLine&);
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|