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

#pragma once

#include "interlock.h"

namespace search { class AttributeVector; }

namespace search::attribute {

class ValueModifier
{
public:
    ValueModifier(AttributeVector &attr);
    ValueModifier(const ValueModifier &) = delete;
    ValueModifier & operator = (const ValueModifier &) = delete;
    ~ValueModifier();
private:
    AttributeVector * _attr;
};

}