aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/objects/asciiserializer.cpp
blob: a24e44bee40804cbbade0bd5fb66a1f7606f6a35 (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 Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "asciiserializer.h"
#include <vespa/vespalib/stllike/asciistream.h>

namespace vespalib {

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

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

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

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

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

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

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

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

}  // namespace vespalib