more changes

This commit is contained in:
Kosta
2014-09-04 17:37:13 +02:00
parent e70494bc00
commit 00ac1024ee
2 changed files with 5 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
using namespace rapidjson;
using namespace std;
struct MyHandler : public BaseReaderHandler<UTF8<>, MyHandler> {
struct MyHandler {
bool Null() { cout << "Null()" << endl; return true; }
bool Bool(bool b) { cout << "Bool(" << boolalpha << b << ")" << endl; return true; }
bool Int(int i) { cout << "Int(" << i << ")" << endl; return true; }