~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/num.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 19:11:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704191147-s99ojek811zi1fzj
Remove unused Name_resolution_context::error_reporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_FIELD_NUM_H
22
 
#define DRIZZLED_FIELD_NUM_H
 
21
#pragma once
23
22
 
24
 
#include "drizzled/field.h"
 
23
#include <drizzled/field.h>
25
24
 
26
25
namespace drizzled
27
26
{
52
51
 
53
52
  int store_decimal(const type::Decimal *);
54
53
 
55
 
  type::Decimal *val_decimal(type::Decimal *);
 
54
  type::Decimal *val_decimal(type::Decimal *) const;
56
55
 
57
56
  uint32_t is_equal(CreateField *new_field);
58
57
 
59
 
  int check_int(const CHARSET_INFO * const cs, const char *str, int length,
 
58
  int check_int(const charset_info_st * const cs, const char *str, int length,
60
59
                const char *int_end, int error);
61
60
 
62
 
  bool get_int(const CHARSET_INFO * const cs, const char *from, uint32_t len,
 
61
  bool get_int(const charset_info_st * const cs, const char *from, uint32_t len,
63
62
               int64_t *rnd, uint64_t unsigned_max,
64
63
               int64_t signed_min, int64_t signed_max);
65
64
};
66
65
 
67
66
} /* namespace drizzled */
68
67
 
69
 
#endif /* DRIZZLED_FIELD_NUM_H */