aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/fieldvalue/modificationstatus.h
blob: a7398708d8878e3381f44498fc5c480dbc904588 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace document::fieldvalue {

enum class ModificationStatus {
    MODIFIED,
    REMOVED,
    NOT_MODIFIED
};

}