~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/library.h

  • Committer: lbieber
  • Date: 2010-10-07 14:55:42 UTC
  • mfrom: (1813.2.17 boost-fs-path-work)
  • mto: This revision was merged to the branch mainline in revision 1820.
  • Revision ID: lbieber@orisndriz08-20101007145542-fiwu5dd53lfrd0hr
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

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