~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2011-07-25 04:35:53 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725043553-44g9ti2gm9yl623o
Fedora fix/use fwd header for iostream.

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