~kawninzx6/libiqxmlrpc/streamInsertOp

« back to all changes in this revision

Viewing changes to libiqxmlrpc/parser.cc

  • Committer: Anton Dedov
  • Date: 2010-07-26 20:35:31 UTC
  • Revision ID: adedov@gmail.com-20100726203531-5unndog5yqha83ws
Merge with mine adjustments:
 622. By james <james@jnb>  on 2010-06-04
 Refactore includes to fix Windows compile errors.
 lp:~kawninzx6/libiqxmlrpc/windowsBuild

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
//
18
18
//  $Id: parser.cc,v 1.13 2006-09-07 09:35:42 adedov Exp $
19
19
 
20
 
#include <stdexcept>
21
 
#include <functional>
22
 
#include <algorithm>
 
20
#include "parser.h"
 
21
 
23
22
#include "sysinc.h"
24
 
#include "parser.h"
25
23
#include "except.h"
26
24
#include "parser_specific.h"
 
25
#include "value.h"
27
26
#include "value_type.h"
28
 
#include "value.h"
 
27
 
 
28
#include <algorithm>
 
29
#include <functional>
 
30
#include <stdexcept>
29
31
 
30
32
using namespace iqxmlrpc;
31
33