aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/boolean.cpp
blob: 397360752fd791b6eae909af950b5095c917c4dc (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
#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();
}
*/