summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/documentsummary.h
blob: b49bac2cd8db059787479b714d3fea50d0679c8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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 {
namespace docsummary {

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

    static bool
    writeDocIdLimit(const vespalib::string &dir, uint32_t docIdLimit);
};

}
}