aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/attribute_object_visitor.h
blob: 29c7e1556b6cb13db480a5a0aba7197b16c189d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace vespalib { class ObjectVisitor; }

namespace search::attribute {

class IAttributeVector;

/**
 * Function used to visit the basic properties of an IAttributeVector.
 */
void visit_attribute(vespalib::ObjectVisitor& visitor, const IAttributeVector& attr);

}