// Copyright John W. Wilkinson 2007 - 2009. // Distributed under the MIT License, see accompanying file LICENSE.txt // json spirit version 4.01 #include "json_spirit_value_test.h" #include "json_spirit_writer_test.h" #include "json_spirit_reader_test.h" #include "json_spirit_utils_test.h" #include "json_spirit.h" #include <string> #include <iostream> using namespace std; using namespace json_spirit; int main() { test_value(); test_writer(); test_reader(); test_utils(); cout << "all tests passed" << endl << endl; cout << "press any key to continue"; string s; cin >> s; return 0; }
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The MIT License
The Next Version of Android - Some of What's Coming