aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/objects/valuetype.cpp
blob: acee33874cd8fdfe9bbc5c3a9c9c5d5d79152a24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "valuetype.h"

namespace vespalib {

const StringValueType StringValueType::t;
const DynamicDataValueType DynamicDataValueType::t;
const Int16ValueType Int16ValueType::t;
const Int32ValueType Int32ValueType::t;
const Int64ValueType Int64ValueType::t;
const UnsignedByteValueType UnsignedByteValueType::t;
const Uint128ValueType Uint128ValueType::t;
const Uint256ValueType Uint256ValueType::t;
const Uint96ValueType Uint96ValueType::t;
const ArrayOfStringValueType ArrayOfStringValueType::t;
const ArrayOfDynamicDataValueType ArrayOfDynamicDataValueType::t;
const ArrayOfInt16ValueType ArrayOfInt16ValueType::t;
const ArrayOfInt32ValueType ArrayOfInt32ValueType::t;
const ArrayOfInt64ValueType ArrayOfInt64ValueType::t;
const ArrayOfUnsignedByteValueType ArrayOfUnsignedByteValueType::t;
const ArrayOfUint128ValueType ArrayOfUint128ValueType::t;
const ArrayOfUint256ValueType ArrayOfUint256ValueType::t;
const ArrayOfUint96ValueType ArrayOfUint96ValueType::t;

} // namespace vespalib