aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/util/programoptions_testutils.h
blob: 5798a87316984047a2b07bf5123c3072222babfe (plain) (blame)
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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 * This class contains some test utilities, to create argc/argv inputs for
 * application tests.
 */

#pragma once

#include <string>
#include <vector>

namespace vespalib {

class AppOptions {
    int _argc;
    const char** _argv;
    std::vector<std::string> _source;

    AppOptions(const AppOptions&);
    AppOptions& operator=(const AppOptions&);

public:
    AppOptions(const std::string& optString);
    ~AppOptions();

    int getArgCount() const { return _argc; }
    const char* const* getArguments() const { return _argv; }

};

} // vespalib