~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/math_functions/atan.h

move ATAN() and ATAN2() function into math_functions plugin. ATAN2() is just another instance of ATAN()

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
class Item_func_atan :public Item_dec_func
30
30
{
31
31
public:
32
 
  Item_func_atan(Item *a) :Item_dec_func(a) {}
33
 
  Item_func_atan(Item *a,Item *b) :Item_dec_func(a,b) {}
 
32
  Item_func_atan() :Item_dec_func() {}
34
33
  double val_real();
35
34
  const char *func_name() const { return "atan"; }
 
35
  bool check_argument_count(int n) { return n == 1 || n == 2; }
36
36
};
37
37
 
38
38
} /* namespace drizzled */