~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/log.h

  • Committer: Monty Taylor
  • Date: 2008-11-15 18:39:51 UTC
  • mto: (584.1.7 devel)
  • mto: This revision was merged to the branch mainline in revision 588.
  • Revision ID: monty@inaugust.com-20081115183951-jo2v3abwdu24lnwq
Split out hybrid_type_traits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef PLUGIN_MATH_FUNCTIONS_LOG_H
21
 
#define PLUGIN_MATH_FUNCTIONS_LOG_H
22
 
 
23
 
#include <drizzled/function/func.h>
24
 
#include <drizzled/function/math/dec.h>
25
 
 
26
 
namespace drizzled
27
 
{
 
20
#ifndef DRIZZLED_FUNCTIONS_LOG_H
 
21
#define DRIZZLED_FUNCTIONS_LOG_H
 
22
 
 
23
#include <drizzled/functions/func.h> 
28
24
 
29
25
class Item_func_log :public Item_dec_func
30
26
{
31
27
public:
32
 
  Item_func_log() :Item_dec_func() {}
 
28
  Item_func_log(Item *a) :Item_dec_func(a) {} 
 
29
  Item_func_log(Item *a,Item *b) :Item_dec_func(a,b) {}
33
30
  double val_real();
34
31
  const char *func_name() const { return "log"; }
35
 
  bool check_argument_count(int n) { return n == 1 || n == 2; }
36
32
};
37
33
 
38
34
class Item_func_log2 :public Item_dec_func
39
35
{
40
36
public:
41
 
  Item_func_log2() :Item_dec_func() {}
 
37
  Item_func_log2(Item *a) :Item_dec_func(a) {}
42
38
  double val_real();
43
39
  const char *func_name() const { return "log2"; }
44
 
  bool check_argument_count(int n) { return n == 1; }
45
40
};
46
41
 
47
42
 
48
43
class Item_func_log10 :public Item_dec_func
49
44
{
50
45
public:
51
 
  Item_func_log10() :Item_dec_func() {}
 
46
  Item_func_log10(Item *a) :Item_dec_func(a) {}
52
47
  double val_real();
53
48
  const char *func_name() const { return "log10"; }
54
 
  bool check_argument_count(int n) { return n == 1; }
55
49
};
56
50
 
57
 
} /* namespace drizzled */
58
 
 
59
 
#endif /* PLUGIN_MATH_FUNCTIONS_LOG_H */
 
51
#endif /* DRIZZLED_FUNCTIONS_LOG_H */