~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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
 
#pragma once
 
20
#ifndef DRIZZLED_SET_VAR_H
 
21
#define DRIZZLED_SET_VAR_H
21
22
 
22
23
#include <boost/shared_ptr.hpp>
23
24
 
24
 
#include <drizzled/common_fwd.h>
25
 
#include <drizzled/enum.h>
26
 
#include <drizzled/lex_string.h>
27
 
 
28
 
namespace drizzled {
 
25
#include "drizzled/memory/sql_alloc.h"
 
26
#include "drizzled/sql_list.h"
 
27
#include "drizzled/lex_string.h"
 
28
 
 
29
namespace drizzled
 
30
{
 
31
 
 
32
namespace plugin
 
33
{
 
34
class StorageEngine;
 
35
}
 
36
 
 
37
class sys_var;
 
38
class Item;
 
39
class Item_func_set_user_var;
 
40
class Time_zone;
 
41
typedef struct my_locale_st MY_LOCALE;
 
42
typedef struct charset_info_st CHARSET_INFO;
29
43
 
30
44
/* Classes to support the SET command */
31
45
 
95
109
 
96
110
} /* namespace drizzled */
97
111
 
 
112
#endif /* DRIZZLED_SET_VAR_H */