~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/json_server/json/writer.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 JSON_WRITER_H_INCLUDED
40
 
# define JSON_WRITER_H_INCLUDED
41
39
 
42
40
# include "value.h"
43
41
# include <vector>
44
42
# include <string>
45
 
# include <iostream>
 
43
# include <iosfwd>
46
44
 
47
45
namespace Json {
48
46
 
206
204
   std::ostream& operator<<( std::ostream&, const Value &root );
207
205
 
208
206
} // namespace Json
209
 
 
210
 
 
211
 
 
212
 
#endif // JSON_WRITER_H_INCLUDED