aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/docstore/idatastore.cpp
blob: 86800322516fecb3995d3ec3a822e5fa57090f31 (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.

#include "idatastore.h"

namespace search {

IDataStore::IDataStore(const vespalib::string& dirName) :
    _docIdLimit(0),
    _dirName(dirName)
{
}

IDataStore::~IDataStore()
{
}

} // namespace search