~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table/like.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:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_STATEMENT_CREATE_TABLE_LIKE_H
22
 
#define DRIZZLED_STATEMENT_CREATE_TABLE_LIKE_H
23
 
 
24
 
#include "drizzled/statement/create_table.h"
25
 
 
26
 
namespace drizzled
27
 
{
28
 
class Session;
29
 
 
30
 
namespace statement
31
 
{
32
 
 
33
 
namespace create
34
 
{
35
 
 
36
 
namespace table
37
 
{
 
21
#pragma once
 
22
 
 
23
#include <drizzled/statement/create_table.h>
 
24
 
 
25
namespace drizzled {
 
26
namespace statement {
 
27
namespace create {
 
28
namespace table {
38
29
 
39
30
class Like : public CreateTable
40
31
{
44
35
  {
45
36
  }
46
37
 
47
 
  bool executeInner(identifier::Table::const_reference);
 
38
  bool executeInner(const identifier::Table&);
48
39
};
49
40
 
50
41
} /* namespace table */
55
46
 
56
47
} /* namespace drizzled */
57
48
 
58
 
#endif /* DRIZZLED_STATEMENT_CREATE_TABLE_LIKE_H */