~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/server_includes.h

  • Committer: Monty Taylor
  • Date: 2008-11-16 20:15:33 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116201533-d0f19s1bk1h95iyw
Removed a big bank of includes from item.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#ifndef DRIZZLED_SERVER_INCLUDES_H
31
31
#define DRIZZLED_SERVER_INCLUDES_H
32
32
 
33
 
/* Some forward declarations just for the server */
34
 
 
35
 
class Comp_creator;
36
 
typedef Comp_creator* (*chooser_compare_func_creator)(bool invert);
37
 
 
38
33
/**
39
34
 * Contains all headers, definitions, and declarations common to
40
35
 * the server and the plugin infrastructure, and not the client
350
345
extern const char *in_left_expr_name, *in_additional_cond, *in_having_cond;
351
346
extern const char * const TRG_EXT;
352
347
extern const char * const TRN_EXT;
353
 
extern Eq_creator eq_creator;
354
 
extern Ne_creator ne_creator;
355
 
extern Gt_creator gt_creator;
356
 
extern Lt_creator lt_creator;
357
 
extern Ge_creator ge_creator;
358
 
extern Le_creator le_creator;
359
348
extern char language[FN_REFLEN];
360
349
extern char glob_hostname[FN_REFLEN], drizzle_home[FN_REFLEN];
361
350
extern char pidfile_name[FN_REFLEN], system_time_zone[30], *opt_init_file;