aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/boolean.cpp
blob: 7060dab387951ca6cfa0970ffa003f2edc53ddad (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright (C) 2007-2012 Xagasoft, All rights reserved.
 *
 * This file is part of the libgats library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "gats/boolean.h"

#include <bu/formatter.h>
#include <bu/stream.h>

Gats::Boolean::Boolean() :
    bVal( false )
{
}

Gats::Boolean::Boolean( bool bVal ) :
    bVal( bVal )
{
}

Gats::Boolean::~Boolean()
{
}

Gats::Object *Gats::Boolean::clone() const
{
    return new Gats::Boolean( bVal );
}

void Gats::Boolean::write( Bu::Stream &rOut ) const
{
    if( bVal )
    {
        rOut.write("1", 1 ); 
    }
    else
    {
        rOut.write("0", 1 );
    }
}

void Gats::Boolean::read( Bu::Stream &rIn, char cType )
{
    if( cType == '1' )
    {
        bVal = true;
    }
    else
    {
        bVal = false;
    }
}

Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Boolean &b )
{
    return f << "(bool) " << b.getValue();
}