aboutsummaryrefslogtreecommitdiff
path: root/src/object.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-08-27 21:53:54 +0000
committerMike Buland <eichlan@xagasoft.com>2010-08-27 21:53:54 +0000
commitc10c9ef627c7e79fde6170fe334238bbcb5d66e5 (patch)
tree4a0971d81e666e91866ddeaf9b58b952ce2fdd0a /src/object.h
parent2a72923397d866f33221b9d32a3f9653d1a960e7 (diff)
downloadlibgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.tar.gz
libgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.tar.bz2
libgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.tar.xz
libgats-c10c9ef627c7e79fde6170fe334238bbcb5d66e5.zip
Added formatter handlers for debugging, works really well. Also added a bunch
more helpers to make it as easy to use as possible.
Diffstat (limited to 'src/object.h')
-rw-r--r--src/object.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/object.h b/src/object.h
index 10bdc47..44f9da7 100644
--- a/src/object.h
+++ b/src/object.h
@@ -4,6 +4,7 @@
4namespace Bu 4namespace Bu
5{ 5{
6 class Stream; 6 class Stream;
7 class Formatter;
7}; 8};
8 9
9namespace Gats 10namespace Gats
@@ -36,4 +37,6 @@ namespace Gats
36 }; 37 };
37}; 38};
38 39
40Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Object &obj );
41
39#endif 42#endif