~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.h

  • Committer: Monty Taylor
  • Date: 2010-06-16 22:09:59 UTC
  • mto: (1627.2.5 build)
  • mto: This revision was merged to the branch mainline in revision 1628.
  • Revision ID: mordred@inaugust.com-20100616220959-i0kkbytl3jin07t0
Added option_context class, along with unittests, for adding a module
namespace into a command line option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
   */
76
76
  static const plugin::Function *get(const char *name, size_t len=0);
77
77
 
78
 
  typedef boost::unordered_map<std::string, const plugin::Function *, util::insensitive_hash, util::insensitive_equal_to> UdfMap;
79
 
 
80
 
  static const UdfMap &getMap();
81
78
};
82
79
 
83
80
template<class T>