~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/timestamp.h

  • Committer: Brian Aker
  • Date: 2009-04-29 01:45:36 UTC
  • mfrom: (1000.1.6 merge)
  • Revision ID: brian@gaz-20090429014536-pwu5m8ug6n8fvh68
Merge refactoring (mainly around TABLE_SHARE... one step forward...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/field/str.h>
25
25
 
26
 
class TABLE_SHARE;
 
26
class TableShare;
27
27
typedef struct charset_info_st CHARSET_INFO;
28
28
 
29
29
class Field_timestamp :public Field_str {
36
36
  Field_timestamp(unsigned char *ptr_arg, uint32_t len_arg,
37
37
                  unsigned char *null_ptr_arg, unsigned char null_bit_arg,
38
38
                  enum utype unireg_check_arg, const char *field_name_arg,
39
 
                  TABLE_SHARE *share, const CHARSET_INFO * const cs);
 
39
                  TableShare *share, const CHARSET_INFO * const cs);
40
40
  Field_timestamp(bool maybe_null_arg, const char *field_name_arg,
41
41
                  const CHARSET_INFO * const cs);
42
42
  enum_field_types type() const { return DRIZZLE_TYPE_TIMESTAMP;}