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

#include "attributeguard.h"
#include "componentguard.hpp"
#include "attributevector.h"

namespace search {

AttributeGuard::AttributeGuard() :
    ComponentGuard<AttributeVector>()
{
}

AttributeGuard::AttributeGuard(const AttributeVector::SP & attr) :
    ComponentGuard<AttributeVector>(attr)
{
}

template class ComponentGuard<AttributeVector>;

}