summaryrefslogtreecommitdiffstats
path: root/src/qjsonglobal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qjsonglobal.h')
-rw-r--r--src/qjsonglobal.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/qjsonglobal.h b/src/qjsonglobal.h
index d35d706..3f7c15d 100644
--- a/src/qjsonglobal.h
+++ b/src/qjsonglobal.h
@@ -53,15 +53,14 @@
namespace QtJson
{
-// ### FIXME
-// namespace Private {
+ namespace Private {
struct Data;
struct Base;
struct Object;
struct Header;
struct Array;
struct Value;
-// };
+ };
class JsonValue;
class JsonObject;
@@ -69,16 +68,6 @@ namespace QtJson
class JsonDocument;
class QJsonParser;
- enum ValueType {
- NullValue = 0x0,
- BooleanValue = 0x1,
- NumberValue = 0x2,
- StringValue = 0x3,
- ArrayValue = 0x4,
- ObjectValue = 0x5,
- UndefinedValue = 0x80
- };
-
const uint QBJS_Tag = ('q') | ('b' << 8) | ('j' << 16) | ('s' << 24);
}