~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/file_exchange.h

  • Committer: Brian Aker
  • Date: 2010-02-03 21:54:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1281.
  • Revision ID: brian@gaz-20100203215438-9ixkp214vio85mub
Fixing test cases/removed dead optimizer switches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "drizzled/memory/sql_alloc.h"
26
26
#include "drizzled/enum.h"
27
27
 
28
 
namespace drizzled
29
 
{
30
 
 
31
28
extern const CHARSET_INFO *default_charset_info;
32
29
 
33
30
static String default_line_term("\n",default_charset_info);
40
37
  XXX: We never call destructor for objects of this class.
41
38
*/
42
39
 
43
 
class file_exchange :
44
 
  public memory::SqlAlloc
 
40
class file_exchange :public drizzled::memory::SqlAlloc
45
41
{
46
42
public:
47
43
  enum enum_filetype filetype; /* load XML, Added by Arnold & Erik */
56
52
};
57
53
 
58
54
 
59
 
} /* namespace drizzled */
60
 
 
61
55
#endif /* DRIZZLED_FILE_EXCHANGE_H */