~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/data_home.h

  • Committer: Monty Taylor
  • Date: 2011-02-14 20:25:28 UTC
  • mto: (2168.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2169.
  • Revision ID: mordred@inaugust.com-20110214202528-wfb2a5h51ntbl5ct
Fix daemonize c++ patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
 
20
 
 
21
 
20
22
#ifndef DRIZZLED_DATA_HOME_H
21
23
#define DRIZZLED_DATA_HOME_H
22
24
 
23
25
#include <boost/filesystem.hpp>
24
26
 
 
27
#include "drizzled/visibility.h"
 
28
 
25
29
namespace drizzled
26
30
{
27
31
 
28
 
extern boost::filesystem::path full_data_home;
29
 
 
30
 
boost::filesystem::path& getDataHome();
31
 
boost::filesystem::path& getDataHomeCatalog();
 
32
DRIZZLED_API boost::filesystem::path& getFullDataHome();
 
33
DRIZZLED_API boost::filesystem::path& getDataHome();
 
34
DRIZZLED_API boost::filesystem::path& getDataHomeCatalog();
32
35
 
33
36
} /* namespace drizzled */
34
37