~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/elt.h

  • Committer: Monty Taylor
  • Date: 2009-04-25 20:29:54 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: mordred@inaugust.com-20090425202954-slopmkjj7vxal5lk
Migrated archive.

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 PLUGIN_STRING_FUNCTIONS_ELT_H
21
 
#define PLUGIN_STRING_FUNCTIONS_ELT_H
 
20
#ifndef DRIZZLED_FUNCTION_STR_ELT_H
 
21
#define DRIZZLED_FUNCTION_STR_ELT_H
22
22
 
23
23
#include <drizzled/function/str/strfunc.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_func_elt :public Item_str_func
29
26
{
30
27
public:
31
 
  Item_func_elt() :Item_str_func() {}
 
28
  Item_func_elt(List<Item> &list) :Item_str_func(list) {}
32
29
  double val_real();
33
30
  int64_t val_int();
34
31
  String *val_str(String *str);
35
32
  void fix_length_and_dec();
36
33
  const char *func_name() const { return "elt"; }
37
 
  bool check_argument_count(int n) { return n > 1; }
38
34
};
39
35
 
40
 
} /* namespace drizzled */
41
 
 
42
 
#endif /* PLUGIN_STRING_FUNCTIONS_ELT_H */
 
36
#endif /* DRIZZLED_FUNCTION_STR_ELT_H */