~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/multiply.h

  • Committer: Monty Taylor
  • Date: 2008-10-27 23:19:48 UTC
  • mto: (520.4.12 merge-innodb-plugin)
  • mto: This revision was merged to the branch mainline in revision 563.
  • Revision ID: monty@inaugust.com-20081027231948-3kl6ss04plbakqcr
Split some more things out of common_includes.h.

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_FUNCTION_MATH_MULTIPLY_H
21
 
#define DRIZZLED_FUNCTION_MATH_MULTIPLY_H
 
20
#ifndef DRIZZLED_FUNCTIONS_MULTIPLY_H
 
21
#define DRIZZLED_FUNCTIONS_MULTIPLY_H
22
22
 
23
 
#include <drizzled/function/func.h>
24
 
#include <drizzled/function/num_op.h>
 
23
#include <drizzled/functions/func.h> 
 
24
#include <drizzled/functions/num_op.h> 
25
25
 
26
26
class Item_func_mul :public Item_num_op
27
27
{
32
32
  double real_op();
33
33
  my_decimal *decimal_op(my_decimal *);
34
34
  void result_precision();
35
 
  bool check_vcol_func_processor(unsigned char *)
 
35
  bool check_vcol_func_processor(unsigned char *int_arg __attribute__((unused)))
36
36
  { return false; }
37
37
 
38
38
};
39
39
 
40
 
#endif /* DRIZZLED_FUNCTION_MATH_MULTIPLY_H */
 
40
#endif /* DRIZZLED_FUNCTIONS_MULTIPLY_H */