aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient/src/vespa/vespaclient/vesparoute/params.cpp
blob: 5c02d4f56a8b7b84f70673fc932b005d484db82d (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "params.h"

namespace vesparoute {

Params::Params() :
    _rpcParams(),
    _hops(),
    _routes(),
    _documentTypesConfigId("client"),
    _routingConfigId("client"),
    _protocol("document"),
    _slobrokConfigId(""),
    _lstHops(false),
    _lstRoutes(false),
    _lstServices(false),
    _dump(false),
    _verify(false)
{}

Params::~Params() = default;

}