~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

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
41
39
 
42
 
# include "features.h"
43
 
# include "value.h"
44
 
# include <deque>
45
 
# include <stack>
46
 
# include <string>
47
 
# include <iostream>
 
40
#include "features.h"
 
41
#include "value.h"
 
42
#include <deque>
 
43
#include <stack>
 
44
#include <string>
 
45
#include <iosfwd>
48
46
 
49
47
namespace Json {
50
48
 
230
228
   std::istream& operator>>( std::istream&, Value& );
231
229
 
232
230
} // namespace Json
233
 
 
234
 
#endif // CPPTL_JSON_READER_H_INCLUDED