~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/catalog.h

updating

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
 
 
38
29
} /* namespace catalog */
39
30
} /* namespace drizzled */
40
31