summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/btree/btreestore.cpp
blob: 7de106c5dc78e99002c32bf0c5838df1bf9abcbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "btreestore.h"
#include "btreestore.hpp"
#include "btreeiterator.hpp"

namespace search::btree {

template class BTreeStore<uint32_t, uint32_t,
                          NoAggregated,
                          std::less<uint32_t>,
                          BTreeDefaultTraits>;

template class BTreeStore<uint32_t, BTreeNoLeafData,
                          NoAggregated,
                          std::less<uint32_t>,
                          BTreeDefaultTraits>;

template class BTreeStore<uint32_t, int32_t,
                          MinMaxAggregated,
                          std::less<uint32_t>,
                          BTreeDefaultTraits,
                          MinMaxAggrCalc>;

}