aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/blob_sequence_reader.cpp
blob: 2977a1621069760cf615238a3fd03f800f8da94b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "blob_sequence_reader.h"
#include <vespa/fastos/file.h>

namespace search::attribute {

void
BlobSequenceReader::readBlob(void *buf, size_t len) {
    _datFile.file().ReadBuf(buf, len);
}

} // namespace