~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_world/hello_world.cc

  • Committer: Monty Taylor
  • Date: 2009-02-26 02:10:12 UTC
  • mto: This revision was merged to the branch mainline in revision 898.
  • Revision ID: monty@inaugust.com-20090226021012-fgjjlu5slrgwz183
Fixed compiler warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
class Item_func_hello_world : public Item_str_func
26
26
{
27
27
public:
 
28
  Item_func_hello_world() : Item_str_func() {}
28
29
  const char *func_name() const { return "hello_world"; }
29
30
  String *val_str(String* s) {
30
31
    s->set(STRING_WITH_LEN("Hello World!"),system_charset_info);