~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.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:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
 
20
 
 
21
 
20
22
#ifndef DRIZZLED_SQL_BASE_H
21
23
#define DRIZZLED_SQL_BASE_H
22
24
 
23
25
#include <drizzled/table.h>
24
26
#include <drizzled/table/concurrent.h>
25
27
 
 
28
#include "drizzled/visibility.h"
 
29
 
26
30
namespace drizzled
27
31
{
28
32
class TableShare;
35
39
 
36
40
table::Cache &get_open_cache();
37
41
 
38
 
void kill_drizzle(void);
 
42
DRIZZLED_API void kill_drizzle(void);
39
43
 
40
44
/* sql_base.cc */
41
45
void set_item_name(Item *item,char *pos,uint32_t length);