~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-20 11:31:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2345.
  • Revision ID: olafvdspek@gmail.com-20110620113116-lyvs0qnxsbvlfjpf
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
 * The store_xxx() methods take various input and convert
67
67
 * the input into the raw bytes stored in the ptr member variable.
68
68
 */
69
 
class DRIZZLED_API Field
 
69
class DRIZZLED_API Field : boost::noncopyable
70
70
{
71
 
  /* Prevent use of these */
72
 
  Field(const Field&);
73
 
  void operator=(Field &);
74
 
 
75
71
public:
76
72
  unsigned char *ptr; /**< Position to field in record. Stores raw field value */
77
73
  unsigned char *null_ptr; /**< Byte where null_bit is */