From 11b5a91c5884d496744911f261ed6c2b053b9940 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 19 Aug 2010 06:28:17 +0000 Subject: Wow, it pretty much all works. the float format is a little funny, I treat it as a string, with a string header and then string data that is then turned into a float. It's pretty much how it's going to work, unless I come up with something revolutionary. --- src/object.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/object.cpp') diff --git a/src/object.cpp b/src/object.cpp index 4c1f3ca..9176b49 100644 --- a/src/object.cpp +++ b/src/object.cpp @@ -45,6 +45,10 @@ Gats::Object *Gats::Object::read( Bu::Stream &rIn ) pObj = new Gats::Dictionary(); break; + case 'f': + pObj = new Gats::Float(); + break; + case 'e': return NULL; -- cgit v1.2.3