~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.h

  • Committer: Stewart Smith
  • Date: 2009-10-08 12:39:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091008123927-qpf9hog04w4xc5aj
make directory_file_name() static to mysys/my_lib.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_STATEMENT_H
22
22
#define DRIZZLED_STATEMENT_H
23
23
 
 
24
#include <drizzled/server_includes.h>
24
25
#include <drizzled/definitions.h>
25
26
#include <drizzled/error.h>
26
27
#include <drizzled/sql_parse.h>
27
28
#include <drizzled/sql_base.h>
28
29
#include <drizzled/show.h>
29
30
 
30
 
namespace drizzled
31
 
{
32
 
 
33
31
class Session;
34
32
class TableList;
35
33
class Item;
36
34
 
 
35
namespace drizzled
 
36
{
37
37
namespace statement
38
38
{
39
39
 
66
66
  Session *session;
67
67
};
68
68
 
69
 
} /* namespace statement */
 
69
} /* end namespace statement */
70
70
 
71
 
} /* namespace drizzled */
 
71
} /* end namespace drizzled */
72
72
 
73
73
#endif /* DRIZZLED_STATEMENT_H */