~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/linebuffer.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:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
 
#ifndef CLIENT_LINEBUFFER_H
17
 
#define CLIENT_LINEBUFFER_H
 
16
#pragma once
18
17
 
19
18
#include <vector>
20
19
#include <sstream>
21
 
#include <iostream>
 
20
#include <iosfwd>
22
21
#include <boost/iostreams/stream.hpp>
23
22
#include <boost/iostreams/device/file_descriptor.hpp>
24
23
 
34
33
  std::iostream *file_stream;
35
34
  uint32_t max_size;
36
35
};
37
 
 
38
 
#endif /* CLIENT_LINEBUFFER_H */