mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 05:22:45 +00:00
This commit was manufactured by cvs2svn to create branch
'unlabeled-1.2.2'. [SVN r9019]
This commit is contained in:
@@ -1,69 +0,0 @@
|
||||
#include "ivect.h"
|
||||
#include "dvect.h"
|
||||
#include <boost/python/class_builder.hpp>
|
||||
#include <boost/python/detail/import_extension_class.hpp>
|
||||
namespace python = boost::python;
|
||||
|
||||
namespace {
|
||||
|
||||
vects::dvect ivect_as_dvect(const vects::ivect& iv)
|
||||
{
|
||||
vects::dvect dv(iv.size());
|
||||
vects::dvect::iterator dviter = dv.begin();
|
||||
for (int i = 0; i < iv.size(); i++) dviter[i] = static_cast<double>(iv[i]);
|
||||
return dv;
|
||||
}
|
||||
|
||||
boost::python::tuple dvect_as_tuple(const vects::dvect& dv)
|
||||
{
|
||||
return dv.as_tuple();
|
||||
}
|
||||
|
||||
std::auto_ptr<vects::dvect> auto_ptr_dvect(const vects::ivect& iv)
|
||||
{
|
||||
return std::auto_ptr<vects::dvect>(new vects::dvect(ivect_as_dvect(iv)));
|
||||
}
|
||||
|
||||
boost::shared_ptr<vects::dvect> shared_ptr_dvect(const vects::ivect& iv)
|
||||
{
|
||||
return boost::shared_ptr<vects::dvect>(new vects::dvect(ivect_as_dvect(iv)));
|
||||
}
|
||||
|
||||
boost::python::tuple auto_ptr_dvect_as_tuple(std::auto_ptr<vects::dvect>& dv)
|
||||
{
|
||||
return dv->as_tuple();
|
||||
}
|
||||
|
||||
boost::python::tuple shared_ptr_dvect_as_tuple(boost::shared_ptr<vects::dvect>& dv)
|
||||
{
|
||||
return dv->as_tuple();
|
||||
}
|
||||
}
|
||||
|
||||
extern "C"
|
||||
DL_EXPORT(void)
|
||||
initivect()
|
||||
{
|
||||
try
|
||||
{
|
||||
python::module_builder this_module("ivect");
|
||||
|
||||
python::x_class_builder<vects::ivect> ivect_class(this_module, "ivect");
|
||||
|
||||
python::import_class_builder<vects::dvect> dvect_class("dvect", "dvect");
|
||||
|
||||
ivect_class.def(python::constructor<python::tuple>());
|
||||
ivect_class.def(&vects::ivect::as_tuple, "as_tuple");
|
||||
ivect_class.def(ivect_as_dvect, "as_dvect");
|
||||
|
||||
this_module.def(dvect_as_tuple, "dvect_as_tuple");
|
||||
ivect_class.def(auto_ptr_dvect, "auto_ptr_dvect");
|
||||
ivect_class.def(shared_ptr_dvect, "shared_ptr_dvect");
|
||||
this_module.def(auto_ptr_dvect_as_tuple, "auto_ptr_dvect_as_tuple");
|
||||
this_module.def(shared_ptr_dvect_as_tuple, "shared_ptr_dvect_as_tuple");
|
||||
}
|
||||
catch(...)
|
||||
{
|
||||
python::handle_exception(); // Deal with the exception for Python
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user