mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-13 04:09:25 +00:00
82 lines
2.5 KiB
C++
82 lines
2.5 KiB
C++
/* GRAPHITE2 LICENSING
|
|
|
|
Copyright 2010, SIL International
|
|
All rights reserved.
|
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
by the Free Software Foundation; either version 2.1 of License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should also have received a copy of the GNU Lesser General Public
|
|
License along with this library in the file named "LICENSE".
|
|
If not, write to the Free Software Foundation, 51 Franklin Street,
|
|
Suite 500, Boston, MA 02110-1335, USA or visit their web page on the
|
|
internet at http://www.fsf.org/licenses/lgpl.html.
|
|
|
|
Alternatively, the contents of this file may be used under the terms of the
|
|
Mozilla Public License (http://mozilla.org/MPL) or the GNU General Public
|
|
License, as published by the Free Software Foundation, either version 2
|
|
of the License or (at your option) any later version.
|
|
*/
|
|
// JSON debug logging very basic test harness
|
|
// Author: Tim Eves
|
|
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <json.hpp>
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
std::ofstream log;
|
|
if (argc > 1)
|
|
log.open(argv[1]);
|
|
|
|
json jo(argc == 1 ? std::cout : log);
|
|
|
|
|
|
jo << json::array
|
|
<< "a string"
|
|
<< 0.54
|
|
<< 123
|
|
<< false
|
|
<< json::null
|
|
<< json::close;
|
|
|
|
jo << json::object << "empty object" << json::object << json::close;
|
|
|
|
jo << "primitive types" << json::object
|
|
<< "string" << "a string"
|
|
<< "number" << 0.54
|
|
<< "integer" << 123
|
|
<< "boolean" << false
|
|
<< "null" << json::null
|
|
<< json::close;
|
|
|
|
jo << "complex object" << json::object
|
|
<< "firstName" << "John"
|
|
<< "lastName" << "Smith"
|
|
<< "age" << 25
|
|
<< "address" << json::flat << json::object
|
|
<< "streetAddress" << "21 2nd Street"
|
|
<< "city" << "New York"
|
|
<< "state" << "NY"
|
|
<< "postalCode" << "10021"
|
|
<< json::close
|
|
<< "phoneNmuber" << json::array
|
|
<< json::flat << json::object
|
|
<< "type" << "home"
|
|
<< "number" << "212 555-1234"
|
|
<< json::close
|
|
<< json::object
|
|
<< "type" << "fax"
|
|
<< "number" << "646 555-4567";
|
|
|
|
return 0;
|
|
}
|