~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/file_exchange.cc

  • Committer: Monty Taylor
  • Date: 2009-12-27 00:49:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091227004903-maw7ktxu6i6hye9b
Moved mem_root functions into drizzled::memory:: namespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include "config.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 */