aboutsummaryrefslogtreecommitdiff
path: root/src/boolean.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/boolean.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/boolean.cpp b/src/boolean.cpp
new file mode 100644
index 0000000..087845a
--- /dev/null
+++ b/src/boolean.cpp
@@ -0,0 +1,42 @@
1#include "gats/boolean.h"
2
3#include <bu/stream.h>
4
5Gats::Boolean::Boolean() :
6 bVal( false )
7{
8}
9
10Gats::Boolean::Boolean( bool bVal ) :
11 bVal( bVal )
12{
13}
14
15Gats::Boolean::~Boolean()
16{
17}
18
19void Gats::Boolean::write( Bu::Stream &rOut ) const
20{
21 if( bVal )
22 {
23 rOut.write("1", 1 );
24 }
25 else
26 {
27 rOut.write("0", 1 );
28 }
29}
30
31void Gats::Boolean::read( Bu::Stream &rIn, char cType )
32{
33 if( cType == '1' )
34 {
35 bVal = true;
36 }
37 else
38 {
39 bVal = false;
40 }
41}
42