~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.h

  • Committer: Brian Aker
  • Date: 2011-01-25 07:22:15 UTC
  • mfrom: (2109.1.7 drizzle-build)
  • Revision ID: brian@tangent.org-20110125072215-567z6uzy5vdvn4va
Merge in build/timestamp patches/fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define DRIZZLED_PLUGIN_FUNCTION_H
22
22
 
23
23
 
24
 
#include <drizzled/item/func.h>
25
 
#include <drizzled/plugin.h>
26
 
#include <drizzled/plugin/plugin.h>
 
24
#include "drizzled/plugin/plugin.h"
 
25
#include "drizzled/item/func.h"
27
26
 
28
27
#include <string>
29
28
#include <vector>
30
29
#include <functional>
31
30
 
32
 
#include <boost/unordered_map.hpp>
33
 
 
34
 
#include "drizzled/visibility.h"
35
 
 
36
31
namespace drizzled
37
32
{
38
33
 
43
38
  class Root;
44
39
}
45
40
 
46
 
namespace util
47
 
{
48
 
struct insensitive_hash;
49
 
struct insensitive_equal_to;
50
 
}
51
 
 
52
41
namespace plugin
53
42
{
54
43
 
55
44
/**
56
45
 * Functions in the server: AKA UDF
57
46
 */
58
 
class DRIZZLED_API Function
 
47
class Function
59
48
  : public Plugin,
60
49
    public std::unary_function<memory::Root*, Item_func *>
61
50
{