aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/index/postinglistcountfile.cpp
blob: 80afab6508c00f754ab93ed28b5e55228a842c34 (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
33
34
35
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "postinglistcountfile.h"
#include "postinglistparams.h"

namespace search::index {

PostingListCountFileSeqRead::PostingListCountFileSeqRead() = default;
PostingListCountFileSeqRead::~PostingListCountFileSeqRead() = default;

void
PostingListCountFileSeqRead::
getParams(PostingListParams &params)
{
    params.clear();
}

PostingListCountFileSeqWrite::PostingListCountFileSeqWrite() = default;
PostingListCountFileSeqWrite::~PostingListCountFileSeqWrite() = default;

void
PostingListCountFileSeqWrite::
setParams(const PostingListParams &params)
{
    (void) params;
}

void
PostingListCountFileSeqWrite::
getParams(PostingListParams &params)
{
    params.clear();
}

}