~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_column.h

  • Committer: Jay Pipes
  • Date: 2009-02-28 17:49:22 UTC
  • mto: (910.2.6 mordred-noatomics)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090228174922-jczgt4d0662fqmnf
Merging in old r902 temporal changes

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 */