~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/uuid.h

  • Committer: Brian Aker
  • Date: 2011-02-20 21:00:32 UTC
  • mfrom: (2181.2.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110220210032-fc9g8qugt0n1yjr6
Brian Aker 2011-02-20 Merge in additional header bits for strerror_r
Brian Aker 2011-02-20 Create CONST on additional Field methods.
Brian Aker 2011-02-19 Further commit const on field.
Brian Aker 2011-02-18 This fixes DEBUG based compiles.
Brian Aker 2011-02-18 Protect all of the val_* methods from modification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
  int store(const char *to, uint32_t length, const CHARSET_INFO * const charset);
53
53
  int store(int64_t nr, bool unsigned_val);
54
 
  double val_real();
55
 
  int64_t val_int();
56
 
  String *val_str(String*,String *);
 
54
  double val_real() const;
 
55
  int64_t val_int() const;
 
56
  String *val_str(String*,String *) const;
57
57
  void sql_type(drizzled::String&) const;
58
58
  int store_decimal(const drizzled::type::Decimal*);
59
59
 
66
66
  inline String *val_str(String *str) { return val_str(str, str); }
67
67
  uint32_t size_of() const { return sizeof(*this); }
68
68
 
69
 
  bool get_date(type::Time &ltime, uint32_t);
70
 
  bool get_time(type::Time &ltime);
 
69
  bool get_date(type::Time &ltime, uint32_t) const;
 
70
  bool get_time(type::Time &ltime) const;
71
71
 
72
72
#ifdef NOT_YET
73
73
  void generate();