~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/library.cc

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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
 
#include "config.h"
 
20
#include <config.h>
21
21
 
22
22
#include <dlfcn.h>
23
23
 
26
26
 
27
27
#include <boost/filesystem.hpp>
28
28
 
29
 
#include "drizzled/plugin.h"
30
 
#include "drizzled/definitions.h"
31
 
#include "drizzled/error.h"
32
 
#include "drizzled/errmsg_print.h"
33
 
#include "drizzled/module/library.h"
 
29
#include <drizzled/plugin.h>
 
30
#include <drizzled/definitions.h>
 
31
#include <drizzled/error.h>
 
32
#include <drizzled/errmsg_print.h>
 
33
#include <drizzled/module/library.h>
34
34
 
35
35
using namespace std;
36
36
namespace fs=boost::filesystem;
154
154
    return NULL;
155
155
  }
156
156
 
157
 
  return new (nothrow) module::Library(plugin_name, dl_handle, module_manifest);
 
157
  return new module::Library(plugin_name, dl_handle, module_manifest);
158
158
}
159
159
 
160
160
} /* namespace drizzled */