~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/data_home.h

  • Committer: Monty Taylor
  • Date: 2011-01-26 19:15:55 UTC
  • mto: This revision was merged to the branch mainline in revision 2126.
  • Revision ID: mordred@inaugust.com-20110126191555-nq5nnzyscvngsip2
Turns on -fvisibility=hidden by default. Symbols intended to be used by
plugins need to be marked with DRIZZLED_API.

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
32
extern boost::filesystem::path full_data_home;
29
33
 
30
 
boost::filesystem::path& getFullDataHome();
31
 
boost::filesystem::path& getDataHome();
32
 
boost::filesystem::path& getDataHomeCatalog();
 
34
DRIZZLED_API boost::filesystem::path& getFullDataHome();
 
35
DRIZZLED_API boost::filesystem::path& getDataHome();
 
36
DRIZZLED_API boost::filesystem::path& getDataHomeCatalog();
33
37
 
34
38
} /* namespace drizzled */
35
39