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

#include "i_enum_store.h"
#include "enum_store_loaders.h"

namespace search {

enumstore::EnumeratedLoader
IEnumStore::make_enumerated_loader() {
    return enumstore::EnumeratedLoader(*this);
}

enumstore::EnumeratedPostingsLoader
IEnumStore::make_enumerated_postings_loader() {
    return enumstore::EnumeratedPostingsLoader(*this);
}

}