~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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 DRIZZLED_SHOW_H
28
 
#define DRIZZLED_SHOW_H
29
 
 
30
 
#include "drizzled/enum.h"
31
 
#include "drizzled/lex_string.h"
32
 
 
33
 
#include "drizzled/visibility.h"
34
 
 
35
 
namespace drizzled
36
 
{
37
 
 
38
 
/* Forward declarations */
39
 
class Session;
40
 
class Table_ident;
41
 
struct charset_info_st;
 
27
#pragma once
 
28
 
 
29
#include <drizzled/enum.h>
 
30
#include <drizzled/lex_string.h>
 
31
 
 
32
#include <drizzled/visibility.h>
 
33
 
 
34
namespace drizzled {
42
35
 
43
36
int wild_case_compare(const charset_info_st * const cs, 
44
37
                      const char *str,const char *wildstr);
71
64
 
72
65
} /* namespace drizzled */
73
66
 
74
 
#endif /* DRIZZLED_SHOW_H */