summaryrefslogtreecommitdiffstats
path: root/document/src/vespa/document/document.h
blob: f775b21d3552248abb6b1f6a12f12db85ac23670 (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 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/**
 *
 * \file document.h
 *
 * Include common client parts of document, such that clients can easily
 * just include this file to get what they need.
 *
 * This should pull in all code needed for handling:
 *    - Datatypes
 *    - Fieldvalues
 *    - Updates
 *    - Selection language
 */

#pragma once

#include <vespa/document/datatype/datatypes.h>
#include <vespa/document/fieldvalue/fieldvalues.h>
#include <vespa/document/update/updates.h>
#include <vespa/document/select/parser.h>