aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/objects/asciiserializer.cpp
blob: 5006e267acca11713aa60958688fb00b3333a043 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/objects/asciiserializer.h>
#include <vespa/vespalib/stllike/asciistream.h>

namespace vespalib {

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, bool value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, uint8_t value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, uint16_t value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, uint32_t value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, uint64_t value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, float value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, double value) {
    _stream << value;
    return *this;
}

AsciiSerializer &AsciiSerializer::put(const IFieldBase &, const stringref & value) {
    _stream << value;
    return *this;
}

}  // namespace vespalib