aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/docstore/data_store_file_chunk_id.cpp
blob: 42938ad343ab4ef3b93f093cf641138f5a449172 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "data_store_file_chunk_id.h"
#include "filechunk.h"

namespace search {

vespalib::string
DataStoreFileChunkId::createName(const vespalib::string &baseName) const
{
    FileChunk::NameId id(_nameId);
    return id.createName(baseName);
}

} // namespace search