X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=thirdparty%2Fqjson%2Fparser.cpp;fp=thirdparty%2Fqjson%2Fparser.cpp;h=e203b876f76bef989f8b551ac5f11ed6be5fb161;hb=0094c61568bff9f9dd7bafb711f111698e683831;hp=3096d177a378b16e55bf78deb6e3c2bdc941a025;hpb=c391265484ecb3baa2a00c80658c99ad65963ec6;p=apitrace diff --git a/thirdparty/qjson/parser.cpp b/thirdparty/qjson/parser.cpp index 3096d17..e203b87 100644 --- a/thirdparty/qjson/parser.cpp +++ b/thirdparty/qjson/parser.cpp @@ -3,16 +3,16 @@ * Copyright (C) 2008 Flavio Castelli * * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software Foundation. + * * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * Lesser General Public License for more details. * - * You should have received a copy of the GNU Library General Public License + * You should have received a copy of the GNU Lesser General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. @@ -34,6 +34,8 @@ ParserPrivate::ParserPrivate() : m_scanner(0) , m_negate(false) , m_error(false) + , m_errorLine(0) + , m_specialNumbersAllowed(false) { } @@ -82,6 +84,7 @@ QVariant Parser::parse (QIODevice* io, bool* ok) } d->m_scanner = new JSonScanner (io); + d->m_scanner->allowSpecialNumbers(d->m_specialNumbersAllowed); yy::json_parser parser(d); parser.parse(); @@ -112,3 +115,11 @@ int Parser::errorLine() const { return d->m_errorLine; } + +void QJson::Parser::allowSpecialNumbers(bool allowSpecialNumbers) { + d->m_specialNumbersAllowed = allowSpecialNumbers; +} + +bool Parser::specialNumbersAllowed() const { + return d->m_specialNumbersAllowed; +}