~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/data_home.h

  • Committer: Stewart Smith
  • Date: 2011-12-27 06:49:23 UTC
  • mto: This revision was merged to the branch mainline in revision 2485.
  • Revision ID: stewart@flamingspork.com-20111227064923-tw8ccr27tpx98waq
Partially move towards using LOCAL catalog in all path generation by removing getDataHomeCatalog() and instead using catalog::local_identifier() around the place. We do a bit of prep work in the schema engine too. Next step is to remove chdir to 'local' and generate local as part of path to all objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
DRIZZLED_API const boost::filesystem::path& getFullDataHome();
28
28
DRIZZLED_API const boost::filesystem::path& getDataHome();
29
 
DRIZZLED_API const boost::filesystem::path& getDataHomeCatalog();
30
29
DRIZZLED_API boost::filesystem::path& getMutableDataHome();
31
30
DRIZZLED_API void setFullDataHome(const boost::filesystem::path&);
32
 
DRIZZLED_API void setDataHomeCatalog(const boost::filesystem::path&);
33
31
 
34
32
} /* namespace drizzled */
35
33