~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/linebuffer.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:
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 */