summaryrefslogtreecommitdiff
path: root/src/test_cdec_json_parser.cc
blob: e805318dac0eeb87e6710b666b5702f6ec55aeb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>
#include <fstream>
#include <string>

/*
 * https://github.com/redpony/cdec/tree/master/decoder
 *
 */
#include "cdec_json_parser/json_parse.h"

using namespace std;


int
main(int argc, char** argv)
{
  ifstream ifs(argv[1]);

  istream& s = ifs;
  JSONParser p;
  p.Parse(&s);

  return 0;
}