~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Henrik Ingo
  • Date: 2011-09-23 06:14:37 UTC
  • mfrom: (2425 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2439.
  • Revision ID: henrik.ingo@avoinelama.fi-20110923061437-ct1wedkb9s47uy2t
Merge newest trunk.

Show diffs side-by-side

added added

removed removed

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