~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/constants/schema.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-18 13:52:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2443.
  • Revision ID: olafvdspek@gmail.com-20111018135219-vn5xhy8pvumotthk
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
namespace drizzled {
24
24
namespace identifier {
25
25
 
26
 
const identifier::Schema& data_dictionary();
27
 
const identifier::Schema& information_schema();
28
 
const identifier::Schema& system_schema();
 
26
const Schema& data_dictionary();
 
27
const Schema& information_schema();
 
28
const Schema& system_schema();
29
29
 
30
30
} /* namespace identifier */
31
31
} /* namespace drizzled */
32
32
 
33
33
#define DATA_DICTIONARY_IDENTIFIER drizzled::identifier::data_dictionary()
34
34
#define INFORMATION_SCHEMA_IDENTIFIER drizzled::identifier::information_schema()
35