~skinny.moey/drizzle/innodb-replication

« back to all changes in this revision

Viewing changes to drizzled/data_home.h

  • Committer: lbieber
  • Date: 2010-09-26 03:23:39 UTC
  • mfrom: (1793.1.1 build)
  • Revision ID: lbieber@orisndriz08-20100926032339-59p5xxhkloa09759
Merge Monty - Beginning of catalog support, adds a default local catalog. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_DATA_HOME_H
21
21
#define DRIZZLED_DATA_HOME_H
22
22
 
 
23
#include <string>
 
24
 
23
25
namespace drizzled
24
26
{
25
27
 
26
 
extern char *data_home;
27
 
extern uint32_t data_home_len;
28
 
extern char data_home_real[];
29
 
extern char data_home_buff[];
 
28
std::string& getDataHome();
 
29
std::string& getDataHomeCatalog();
 
30
char *getDatadir();
 
31
char **getDatadirPtr();
30
32
 
31
33
} /* namespace drizzled */
32
34