aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/null.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++-libbu++/src/null.cpp')
-rw-r--r--c++-libbu++/src/null.cpp33
1 files changed, 33 insertions, 0 deletions
diff --git a/c++-libbu++/src/null.cpp b/c++-libbu++/src/null.cpp
new file mode 100644
index 0000000..13a61ed
--- /dev/null
+++ b/c++-libbu++/src/null.cpp
@@ -0,0 +1,33 @@
1#include "gats/null.h"
2
3#include <bu/formatter.h>
4#include <bu/stream.h>
5
6Gats::Null::Null()
7{
8}
9
10Gats::Null::~Null()
11{
12}
13
14Gats::Object *Gats::Null::clone() const
15{
16 return new Gats::Null();
17}
18
19void Gats::Null::write( Bu::Stream &rOut ) const
20{
21 rOut.write("n", 1 );
22}
23
24void Gats::Null::read( Bu::Stream &rIn, char cType )
25{
26 // Nothing to do...
27}
28
29Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b )
30{
31 return f << "(null)";
32}
33