~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/file_exchange.cc

  • Committer: Stewart Smith
  • Date: 2009-12-02 06:01:21 UTC
  • mto: (1237.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: stewart@flamingspork.com-20091202060121-68gyfqifqcjcmi2v
my_end() no longer requires an argument (we removed them all)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#include "config.h"
 
21
#include "drizzled/server_includes.h"
22
22
#include "drizzled/file_exchange.h"
23
23
 
24
 
namespace drizzled
25
 
{
26
 
 
27
24
file_exchange::file_exchange(char *name, bool flag, enum_filetype filetype_arg)
28
25
  : filetype(filetype_arg),
29
26
    file_name(name),
37
34
    skip_lines(0),
38
35
    cs(NULL)
39
36
{ }
40
 
 
41
 
} /* namespace drizzled */