~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/json_server/json/reader.h

  • Committer: Henrik Ingo
  • Date: 2011-08-29 12:24:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2412.
  • Revision ID: henrik.ingo@avoinelama.fi-20110829122427-bj271mhsl4cq8nv2
Updated README
 - make sure links are up to date
 - add instructions to "apt-get build-dep drizzle" before first build from source

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 */
37
37
 
38
38
#pragma once
 
39
#ifndef CPPTL_JSON_READER_H_INCLUDED
 
40
# define CPPTL_JSON_READER_H_INCLUDED
39
41
 
40
 
#include "features.h"
41
 
#include "value.h"
42
 
#include <deque>
43
 
#include <stack>
44
 
#include <string>
45
 
#include <iosfwd>
 
42
# include "features.h"
 
43
# include "value.h"
 
44
# include <deque>
 
45
# include <stack>
 
46
# include <string>
 
47
# include <iostream>
46
48
 
47
49
namespace Json {
48
50
 
228
230
   std::istream& operator>>( std::istream&, Value& );
229
231
 
230
232
} // namespace Json
 
233
 
 
234
#endif // CPPTL_JSON_READER_H_INCLUDED