// Copyright Vespa.ai. 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() { } AttributeGuard::AttributeGuard(const AttributeVector::SP & attr) : ComponentGuard(attr) { } template class ComponentGuard; }