~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_rewrite.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22
22
 */
23
23
 
24
 
#pragma once
25
 
 
26
 
#include <drizzled/atomics.h>
27
 
#include <drizzled/plugin/plugin.h>
28
 
 
29
 
#include <drizzled/visibility.h>
 
24
#ifndef DRIZZLED_PLUGIN_QUERY_REWRITE_H
 
25
#define DRIZZLED_PLUGIN_QUERY_REWRITE_H
 
26
 
 
27
#include "drizzled/atomics.h"
 
28
#include "drizzled/plugin/plugin.h"
 
29
#include "drizzled/session.h"
 
30
 
 
31
#include "drizzled/visibility.h"
30
32
 
31
33
/**
32
34
 * @file Defines the API for a QueryRewriter.  
87
89
 
88
90
} /* namespace drizzled */
89
91
 
 
92
#endif /* DRIZZLED_PLUGIN_QUERY_REWRITE_H */