diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 16:25:22 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 16:25:22 +0000 |
commit | 74dd68ad611d15abf16a65c36a7cfd3f4492930a (patch) | |
tree | 843fed9ba6bb03253a01314afc3b1dfbb2dfd26c /c++-libbu++/src/null.cpp | |
parent | d9b407475ae3ebe434b29d9eabdd7d4416e17881 (diff) | |
download | libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.gz libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.bz2 libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.tar.xz libgats-74dd68ad611d15abf16a65c36a7cfd3f4492930a.zip |
Made the repo less libbu++-centric.
Diffstat (limited to 'c++-libbu++/src/null.cpp')
-rw-r--r-- | c++-libbu++/src/null.cpp | 33 |
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 | |||
6 | Gats::Null::Null() | ||
7 | { | ||
8 | } | ||
9 | |||
10 | Gats::Null::~Null() | ||
11 | { | ||
12 | } | ||
13 | |||
14 | Gats::Object *Gats::Null::clone() const | ||
15 | { | ||
16 | return new Gats::Null(); | ||
17 | } | ||
18 | |||
19 | void Gats::Null::write( Bu::Stream &rOut ) const | ||
20 | { | ||
21 | rOut.write("n", 1 ); | ||
22 | } | ||
23 | |||
24 | void Gats::Null::read( Bu::Stream &rIn, char cType ) | ||
25 | { | ||
26 | // Nothing to do... | ||
27 | } | ||
28 | |||
29 | Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b ) | ||
30 | { | ||
31 | return f << "(null)"; | ||
32 | } | ||
33 | |||