~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Monty Taylor
  • Date: 2009-08-30 00:26:17 UTC
  • mto: (1130.3.4 memory-file-moves)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20090830002617-o57hrj99p6fp1186
Fixed all of the include guards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 * will eventually go away, but for now we split these definitions out into
25
25
 * their own header file for easier maintenance
26
26
 */
27
 
#ifndef DRIZZLE_SERVER_SHOW_H
28
 
#define DRIZZLE_SERVER_SHOW_H
29
 
 
30
 
#include <drizzled/sql_list.h>
31
 
#include <drizzled/lex_string.h>
32
 
#include <drizzled/sql_parse.h>
 
27
#ifndef DRIZZLED_SHOW_H
 
28
#define DRIZZLED_SHOW_H
33
29
 
34
30
#include <vector>
35
31
 
 
32
#include "drizzled/sql_list.h"
 
33
#include "drizzled/lex_string.h"
 
34
#include "drizzled/sql_parse.h"
 
35
 
36
36
/* Forward declarations */
37
37
class String;
38
38
class JOIN;
94
94
void add_infoschema_table(InfoSchemaTable *schema_table);
95
95
void remove_infoschema_table(InfoSchemaTable *table);
96
96
 
97
 
#endif /* DRIZZLE_SERVER_SHOW_H */
 
97
#endif /* DRIZZLED_SHOW_H */