summaryrefslogtreecommitdiff
path: root/shell/source/tools/lngconvex/cmdline.hxx
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: */
scripting?h=feature/gpg4libre-6-0&id=ab9b38a4064141705aa3a3de9a5d73b465ad3af3'>use more begin()/end() for SequenceNoel Grandin 2017-07-05new loplugin unnecessaryparenNoel Grandin 2017-07-04loplugin:casttovoidStephan Bergmann 2017-07-02loplugin:casttovoid: scriptingStephan Bergmann 2017-06-26loplugin:oncevar in scaddins..sotNoel Grandin 2017-06-21s/ERRCODE_SBX_OK/ERRCODE_NONENoel Grandin 2017-06-18remove unused osl/mutex.hxx includesJochen Nitschke 2017-06-12cleanup unused css/frame/* includesJochen Nitschke 2017-06-12clang-tidy readability-delete-null-pointerNoel Grandin 2017-05-20cleanup unused css/resource/ includesJochen Nitschke 2017-05-20cleanup unused css/uri/ includesJochen Nitschke 2017-05-20cleanup unused css/script/ includesJochen Nitschke 2017-05-16loplugin:checkunusedparams variousNoel Grandin 2017-05-12remove unused uno::Reference varsNoel Grandin 2017-05-07revert OSL_ASSERT changesChris Sherlock 2017-05-07tdf#43157: convert scripting module away from OSL_ASSERT to assertChris Sherlock 2017-04-28clang-tidy readability-simplify-boolean-exprNoel Grandin 2017-04-25tools: svstream.hxx needs only errcode.hxx & not errinf.hxxChris Sherlock 2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky 2017-04-21remove unnecessary explicit linefeeds from end of SAL and OSL log callsNoel Grandin 2017-04-12tdf#92007 python scripts with tuple-assignments fails on access from GUIWerner Tietz 2017-03-30remove type decorations on char literalsJochen Nitschke 2017-03-25Fix typosAndrea Gelmini 2017-03-19Fix typos + some German translationsAndrea Gelmini 2017-03-02Fix typosAndrea Gelmini 2017-02-28new loplugin unoanyNoel Grandin 2017-02-23In Java, css.uno.RuntimeException doesn't derive from css.uno.ExceptionStephan Bergmann 2017-02-21loplugin:subtlezeroinit: scriptingStephan Bergmann