~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/math_functions/cos.h

move COS() function into math_functions plugin

Show diffs side-by-side

added added

removed removed

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