summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/documentlocations.cpp
blob: eeddd04b2e5a4ece1f5ea8a4b21d31de4b6034ba (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.

#include "documentlocations.h"
#include <vespa/searchlib/attribute/attributeguard.h>
#include <vespa/searchlib/attribute/attributevector.h>

namespace search {
namespace common {

DocumentLocations::DocumentLocations()
    : _vec(NULL)
{
}

DocumentLocations::~DocumentLocations() { }

DocumentLocations::DocumentLocations(DocumentLocations &&) = default;
DocumentLocations & DocumentLocations::operator = (DocumentLocations &&) = default;


}  // namespace common
}  // namespace search