~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-07-26 19:55:19 UTC
  • mfrom: (2371.1.3 drizzle-fix-fedora15)
  • Revision ID: me@mark.atwood.name-20110726195519-nt8m1gsmvjbhco1c
mergeĀ lp:~brianaker/drizzle/fedora-fix-3

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