aboutsummaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/searchvisitor/querywrapper.cpp
blob: aa0699a65521625f3fd1a9199afb8fc0dd55b0f1 (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 "querywrapper.h"

using namespace search::streaming;

namespace streaming {

QueryWrapper::QueryWrapper(Query & query)
    : _termList()
{
    query.getLeaves(_termList);
}

QueryWrapper::~QueryWrapper() = default;

} // namespace streaming