~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/num.h

Refactor

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_ITEM_NUM_H
21
 
#define DRIZZLED_ITEM_NUM_H
 
20
#pragma once
22
21
 
23
 
#include "drizzled/item/basic_constant.h"
 
22
#include <drizzled/item/basic_constant.h>
 
23
#include <drizzled/type/decimal.h>
24
24
 
25
25
namespace drizzled
26
26
{
30
30
public:
31
31
  Item_num() {}                               /* Remove gcc warning */
32
32
  virtual Item_num *neg()= 0;
33
 
  Item *safe_charset_converter(const CHARSET_INFO * const tocs);
 
33
  Item *safe_charset_converter(const charset_info_st * const tocs);
34
34
};
35
35
 
36
36
} /* namespace drizzled */
37
37
 
38
 
#endif /* DRIZZLED_ITEM_NUM_H */