summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/documentsummary.h
blob: 6444d54a3254c222977259996db46f94c716985b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. 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);
};

}