~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/exp.h

code clean move Item_func_abs, Item_func_int_exp, Item_func_ln, Item_func_log to functions directory

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_EXP_H
21
 
#define DRIZZLED_FUNCTION_MATH_EXP_H
22
 
 
23
 
#include <drizzled/function/func.h>
24
 
#include <drizzled/function/math/dec.h>
25
 
 
26
 
namespace drizzled
27
 
{
 
20
#ifndef DRIZZLED_FUNCTIONS_EXP_H
 
21
#define DRIZZLED_FUNCTIONS_EXP_H
 
22
 
 
23
#include <drizzled/functions/func.h> 
 
24
#include <drizzled/functions/dec.h> 
28
25
 
29
26
class Item_func_exp :public Item_dec_func
30
27
{
34
31
  const char *func_name() const { return "exp"; }
35
32
};
36
33
 
37
 
} /* namespace drizzled */
38
 
 
39
 
#endif /* DRIZZLED_FUNCTION_MATH_EXP_H */
 
34
#endif /* DRIZZLED_FUNCTIONS_EXP_H */