~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/catalog.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:
19
19
 */
20
20
 
21
21
 
22
 
#ifndef DRIZZLED_STATEMENT_CATALOG_H
23
 
#define DRIZZLED_STATEMENT_CATALOG_H
 
22
#pragma once
24
23
 
25
24
#include <drizzled/statement.h>
26
25
 
42
41
 
43
42
  bool execute();
44
43
 
45
 
  identifier::Catalog::const_reference identifier() const
 
44
  const identifier::Catalog& identifier() const
46
45
  {
47
46
    return _identifier;
48
47
  }
54
53
#include <drizzled/statement/catalog/create.h>
55
54
#include <drizzled/statement/catalog/drop.h>
56
55
 
57
 
#endif /* DRIZZLED_STATEMENT_CATALOG_H */