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

#pragma once

#include <vespa/vespalib/stllike/string.h>

namespace search::docsummary {

class DocumentSummary
{
public:
    static bool readDocIdLimit(const vespalib::string &dir, uint32_t &docIdLimit);
    static bool writeDocIdLimit(const vespalib::string &dir, uint32_t docIdLimit);
};

}