~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/catalog/create.h

  • Committer: Mark Atwood
  • Date: 2011-08-03 15:44:55 UTC
  • mfrom: (2318.8.15 refactor2)
  • Revision ID: me@mark.atwood.name-20110803154455-jqg3gnxofkq8wetv
mergeĀ lp:~olafvdspek/drizzle/refactor2

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#pragma once
23
23
 
24
 
namespace drizzled
25
 
{
26
 
 
27
 
namespace statement
28
 
{
29
 
 
30
 
namespace catalog
31
 
{
32
 
 
33
 
class Create :public Catalog
 
24
namespace drizzled {
 
25
namespace statement {
 
26
namespace catalog {
 
27
 
 
28
class Create : public Catalog
34
29
{
35
30
public:
36
 
  Create(Session *in_session, drizzled::lex_string_t &arg);
 
31
  Create(Session*, lex_string_t&);
37
32
  bool authorized() const;
38
33
  bool perform() const;
39
34
};