~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_column.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#pragma once
21
 
 
22
 
#include <drizzled/memory/sql_alloc.h>
23
 
 
24
 
namespace drizzled {
25
 
 
26
 
class AlterColumn : public memory::SqlAlloc 
 
20
#ifndef DRIZZLED_ALTER_COLUMN_H
 
21
#define DRIZZLED_ALTER_COLUMN_H
 
22
 
 
23
#include "drizzled/memory/sql_alloc.h"
 
24
 
 
25
namespace drizzled
27
26
{
 
27
 
 
28
namespace memory { class Root; }
 
29
 
 
30
class Item;
 
31
 
 
32
class AlterColumn :public memory::SqlAlloc {
28
33
public:
29
34
  const char *name;
30
35
  Item *def;
45
50
 
46
51
} /* namespace drizzled */
47
52
 
 
53
#endif /* DRIZZLED_ALTER_COLUMN_H */