~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/copy_string.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-24 00:16:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110324001614-wvmgc6eg52oq2321
Remove const_reference and reference from Session

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
 
#ifndef DRIZZLED_ITEM_COPY_STRING_H
21
 
#define DRIZZLED_ITEM_COPY_STRING_H
 
20
#pragma once
22
21
 
 
22
#include <drizzled/charset_info.h>
 
23
#include <drizzled/item/field.h>
23
24
#include <drizzled/item/ident.h>
24
 
#include <drizzled/item/field.h>
25
25
 
26
26
namespace drizzled
27
27
{
58
58
                                        &err);
59
59
  }
60
60
  String *val_str(String*);
61
 
  my_decimal *val_decimal(my_decimal *);
 
61
  type::Decimal *val_decimal(type::Decimal *);
62
62
  void make_field(SendField *field) { item->make_field(field); }
63
63
  void copy();
64
64
  int save_in_field(Field *field, bool)
72
72
 
73
73
} /* namespace drizzled */
74
74
 
75
 
#endif /* DRIZZLED_ITEM_COPY_STRING_H */