aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/boolean.cpp
blob: d4702a554e0f45bfc6ba721a2da47bbf7e8eaad2 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 2007-2013 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/string.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;
    }
}

Gats::Boolean &Gats::Boolean::operator=( const Gats::Boolean &rhs )
{
    bVal = rhs.bVal;

    return *this;
}

Gats::Boolean &Gats::Boolean::operator=( bool rhs )
{
    bVal = rhs;

    return *this;
}

bool Gats::Boolean::operator==( const Gats::Boolean &rhs ) const
{
    return bVal == rhs.bVal;
}

bool Gats::Boolean::operator==( bool rhs ) const
{
    return bVal == rhs;
}

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