~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/minus.h

Merge Monty - Updates to pandora-build to support features of gcc 4.5.

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
 
#pragma once
 
20
#ifndef DRIZZLED_FUNCTION_MATH_MINUS_H
 
21
#define DRIZZLED_FUNCTION_MATH_MINUS_H
21
22
 
22
23
#include <drizzled/function/func.h>
23
24
#include <drizzled/function/num_op.h>
33
34
  const char *func_name() const { return "-"; }
34
35
  int64_t int_op();
35
36
  double real_op();
36
 
  type::Decimal *decimal_op(type::Decimal *);
 
37
  my_decimal *decimal_op(my_decimal *);
37
38
  void fix_length_and_dec();
38
39
};
39
40
 
40
41
} /* namespace drizzled */
41
42
 
 
43
#endif /* DRIZZLED_FUNCTION_MATH_MINUS_H */