aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++-qt/src/object.cpp')
-rw-r--r--c++-qt/src/object.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/c++-qt/src/object.cpp b/c++-qt/src/object.cpp
index 3955ced..4290e17 100644
--- a/c++-qt/src/object.cpp
+++ b/c++-qt/src/object.cpp
@@ -6,6 +6,7 @@
6#include "gats-qt/string.h" 6#include "gats-qt/string.h"
7#include "gats-qt/list.h" 7#include "gats-qt/list.h"
8#include "gats-qt/dictionary.h" 8#include "gats-qt/dictionary.h"
9#include "gats-qt/null.h"
9 10
10#include <stdlib.h> 11#include <stdlib.h>
11 12
@@ -52,6 +53,10 @@ Gats::Object *Gats::Object::read( QIODevice &rIn )
52 pObj = new Gats::Float(); 53 pObj = new Gats::Float();
53 break; 54 break;
54 55
56 case 'n':
57 pObj = new Gats::Null();
58 break;
59
55 case 'e': 60 case 'e':
56 return NULL; 61 return NULL;
57 62