~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_rewrite.h

  • Committer: Lee Bieber
  • Date: 2011-01-24 17:20:08 UTC
  • mfrom: (2107.2.1 trunk-bug-703913)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: kalebral@gmail.com-20110124172008-y5maihyoyu7gn18p
Merge Andrew - fix bug 703913: some support-files should be dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef DRIZZLED_PLUGIN_QUERY_REWRITE_H
25
25
#define DRIZZLED_PLUGIN_QUERY_REWRITE_H
26
26
 
27
 
#include <drizzled/atomics.h>
28
 
#include <drizzled/plugin/plugin.h>
29
 
 
30
 
#include <drizzled/visibility.h>
 
27
#include "drizzled/atomics.h"
 
28
#include "drizzled/plugin/plugin.h"
 
29
#include "drizzled/session.h"
31
30
 
32
31
/**
33
32
 * @file Defines the API for a QueryRewriter.  
42
41
/**
43
42
 * Class which rewrites queries
44
43
 */
45
 
class DRIZZLED_API QueryRewriter : public Plugin
 
44
class QueryRewriter : public Plugin
46
45
{
47
46
 
48
47
public: