smf/smfservermodule/util/qjson/README
changeset 10 1d94eb8df9c2
parent 9 b85b0c039c14
equal deleted inserted replaced
9:b85b0c039c14 10:1d94eb8df9c2
     1 QJson version 0.5.0
       
     2 -------------------------------------------------
       
     3 Date: April 3rd, 2009
       
     4 Website: http://qjson.sourceforge.net/
       
     5 Mailing List: https://lists.sourceforge.net/mailman/listinfo/qjson-devel
       
     6 
       
     7 Project Lead/Maintainer (2008-current):
       
     8   Flavio Castelli <flavio@castelli.name>
       
     9 
       
    10 Install
       
    11 -------
       
    12   For installation or compiling instructions, see the INSTALL file.
       
    13 
       
    14 License
       
    15 -------
       
    16   This library is licensed under the Lesser GNU General Public License.  See
       
    17   the COPYING file for more information.
       
    18 
       
    19 Description
       
    20 -----------
       
    21   JSON (JavaScript Object Notation) is a lightweight data-interchange format.
       
    22   It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs.
       
    23 
       
    24   QJson is a qt-based library that maps JSON data to QVariant objects.
       
    25   JSON arrays will be mapped to QVariantList instances, while JSON's objects will be mapped to QVariantMap.
       
    26 
       
    27 Happy hacking
       
    28 Flavio