aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/boolean.cpp
blob: 1195bae7bd4eec19a3113ef97cdd59eda360d41c (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
/*
 * 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-qt/boolean.h"

#include <QIODevice>

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( QIODevice &rOut ) const
{
    if( bVal )
    {
        rOut.write("1", 1 ); 
    }
    else
    {
        rOut.write("0", 1 );
    }
}

void Gats::Boolean::read( QIODevice &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();
}
*/