aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/componentguard.hpp
blob: f7972d5d8ebd0e679beb599a51e3bf17863bd202 (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
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "componentguard.h"

namespace search {

template <typename T>
ComponentGuard<T>::ComponentGuard()  = default;

template <typename T>
ComponentGuard<T>::ComponentGuard(const Component & component) :
    _component(component),
    _generationGuard(valid() ? _component->takeGenerationGuard() : Guard())
{ }

template <typename T>
ComponentGuard<T>::ComponentGuard(const ComponentGuard &) = default;

template <typename T>
ComponentGuard<T>::ComponentGuard(ComponentGuard &&) = default;

template <typename T>
ComponentGuard<T> & ComponentGuard<T>::operator = (ComponentGuard &&) = default;

template <typename T>
ComponentGuard<T> &
ComponentGuard<T>::operator = (const ComponentGuard & rhs) {
    ComponentGuard<T> tmp(rhs);
    *this = std::move(tmp);
    return *this;
}

template <typename T>
ComponentGuard<T>::~ComponentGuard() = default;

}