~kawninzx6/libiqxmlrpc/streamInsertOp

« back to all changes in this revision

Viewing changes to libiqxmlrpc/http.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:
16
16
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
17
17
 
18
18
#include "sysinc.h"
19
 
#include <algorithm>
20
 
#include <deque>
21
 
#include <functional>
22
 
#include <memory>
23
 
#include <sstream>
24
 
#include <boost/algorithm/string.hpp>
25
 
#include <boost/date_time/posix_time/posix_time.hpp>
26
 
#include <boost/lexical_cast.hpp>
27
 
#include <boost/optional.hpp>
28
 
#include "http.h"
 
19
 
29
20
#include "http_errors.h"
30
21
#include "method.h"
31
22
 
35
26
#include "../config.h"
36
27
#endif //_WINDOWS
37
28
 
 
29
#include <boost/algorithm/string.hpp>
 
30
#include <boost/date_time/posix_time/posix_time.hpp>
 
31
#include <boost/lexical_cast.hpp>
 
32
#include <boost/optional.hpp>
 
33
 
 
34
#include <algorithm>
 
35
#include <deque>
 
36
#include <functional>
 
37
#include <memory>
 
38
#include <sstream>
 
39
 
38
40
namespace iqxmlrpc {
39
41
namespace http {
40
42