~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/function.h

  • Committer: Stewart Smith
  • Date: 2011-02-10 01:03:48 UTC
  • mto: (2154.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2155.
  • Revision ID: stewart@flamingspork.com-20110210010348-5l0zh0akjahvx3vi
fix Session::tx_isolation to be getTxIsolation to follow coding style, but look weird

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>
 
31
#include "drizzled/visibility.h"
35
32
 
36
33
namespace drizzled
37
34
{
43
40
  class Root;
44
41
}
45
42
 
46
 
namespace util
47
 
{
48
 
struct insensitive_hash;
49
 
struct insensitive_equal_to;
50
 
}
51
 
 
52
43
namespace plugin
53
44
{
54
45