aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/fef/parameter.cpp
blob: 01dd231fabcb3d71663a29dbd6c3f399a2118726 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "parameter.h"

namespace search {
namespace fef {

Parameter::Parameter(ParameterType::Enum type, const vespalib::string & value) :
    _type(type),
    _stringVal(value),
    _doubleVal(0),
    _intVal(0),
    _fieldVal(nullptr)
{
}

} // namespace fef
} // namespace search