~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/rollback_to_savepoint.h

  • Committer: Lee Bieber
  • Date: 2011-03-16 16:39:32 UTC
  • mfrom: (2239.1.11 includes)
  • mto: This revision was merged to the branch mainline in revision 2240.
  • Revision ID: kalebral@gmail.com-20110316163932-ckt3uulj4pimqs8b
Merge Olaf - refactor includes

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#pragma once
22
22
 
23
23
#include <drizzled/statement.h>
24
 
 
25
 
namespace drizzled
26
 
{
 
24
#include <drizzled/sql_lex.h>
 
25
 
 
26
namespace drizzled {
 
27
 
27
28
class Session;
28
29
 
29
 
namespace statement
30
 
{
 
30
namespace statement {
31
31
 
32
32
class RollbackToSavepoint : public Statement
33
33
{
47
47
};
48
48
 
49
49
} /* namespace statement */
50
 
 
51
50
} /* namespace drizzled */
52