~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/catalog.h

  • Committer: Brian Aker
  • Date: 2011-01-13 07:03:39 UTC
  • mfrom: (2077.1.3 drizzle)
  • Revision ID: brian@gir-3-20110113070339-bnfp4yvngb6frhru
Merge in all of the fixes for definition to instance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_CATALOG_H
22
22
#define DRIZZLED_CATALOG_H
23
23
 
24
 
#include <drizzled/identifier.h>
 
24
#include "drizzled/identifier.h"
25
25
 
26
26
namespace drizzled {
27
27
namespace catalog {
28
28
 
 
29
enum error_t {
 
30
  NOT_LOCKED,
 
31
  LOCKED,
 
32
  FOUND,
 
33
  NOT_FOUND
 
34
};
 
35
 
 
36
void error(error_t error, const identifier::Catalog &identifier);
 
37
 
29
38
} /* namespace catalog */
30
39
} /* namespace drizzled */
31
40