~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/sign.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_SIGN_H
21
 
#define DRIZZLED_FUNCTION_SIGN_H
 
20
#ifndef DRIZZLED_FUNCTIONS_SIGN_H
 
21
#define DRIZZLED_FUNCTIONS_SIGN_H
22
22
 
23
 
#include <drizzled/function/func.h>
24
 
#include <drizzled/function/math/int.h>
 
23
#include <drizzled/functions/func.h> 
25
24
 
26
25
class Item_func_sign :public Item_int_func
27
26
{
31
30
  int64_t val_int();
32
31
};
33
32
 
34
 
#endif /* DRIZZLED_FUNCTION_SIGN_H */
 
33
#endif /* DRIZZLED_FUNCTIONS_SIGN_H */