~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/functions.cc

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 */
21
21
 
22
22
#include "config.h"
 
23
 
 
24
#include <drizzled/plugin.h>
23
25
#include "plugin/string_functions/functions.h"
24
26
 
25
 
#include "elt.h"
26
 
#include "format.h"
27
 
#include "quote.h"
28
 
 
29
27
using namespace drizzled;
30
28
 
31
29
static int init(drizzled::module::Context &context)
33
31
  context.add(new plugin::Create_function<Item_func_elt>("elt"));
34
32
  context.add(new plugin::Create_function<Item_func_format>("format"));
35
33
  context.add(new plugin::Create_function<Item_func_quote>("quote"));
 
34
  context.add(new plugin::Create_function<drizzled::string_functions::Regex>("regex"));
36
35
 
37
36
  return 0;
38
37
}