~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/library.h

  • Committer: lbieber
  • Date: 2010-10-07 15:39:23 UTC
  • mfrom: (1819.1.2 build)
  • Revision ID: lbieber@orisndriz08-20101007153923-e9rwa9ha5oyhjdc2
Merge Monty - Bug 655294: load_data() function returns null if file is invalid 
Merge Monty - Bug 655342: select into outfile creates a garbage file on no results
Merge Monty - Fixes the haildb build

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
#include <string>
32
32
 
 
33
#include <boost/filesystem.hpp>
 
34
 
33
35
namespace drizzled
34
36
{
35
37
namespace module
67
69
    return manifest;
68
70
  }
69
71
 
70
 
  static const std::string getLibraryPath(const std::string &plugin_name);
 
72
  static const boost::filesystem::path getLibraryPath(const std::string &plugin_name);
71
73
  static Library *loadLibrary(const std::string &plugin_name, bool builtin);
72
74
};
73
75