~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_column.h

  • Committer: Brian Aker
  • Date: 2009-05-26 20:45:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1040.
  • Revision ID: brian@gaz-20090526204527-27uxzwkkitgoxjaz
Bits of dead code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
#ifndef DRIZZLED_LEX_COLUMN_H
22
22
#define DRIZZLED_LEX_COLUMN_H
23
23
 
24
 
namespace drizzled
25
 
{
26
 
 
27
 
class Lex_Column : public memory::SqlAlloc
 
24
 
 
25
 
 
26
class Lex_Column : public Sql_alloc
28
27
{
29
28
public:
30
29
  String column;
31
30
  uint32_t rights;
32
 
  Lex_Column (const String& x,const  uint32_t& y ): column (x),rights (y) {}
 
31
  Lex_Column (const String& x,const  uint& y ): column (x),rights (y) {}
33
32
};
34
33
 
35
 
}
36
34
 
37
35
#endif /* DRIZZLED_LEX_COLUMN_H */