diff --git a/Homework4/src/pypart.cc b/Homework4/src/pypart.cc index e69de29..4c0c3d7 100644 --- a/Homework4/src/pypart.cc +++ b/Homework4/src/pypart.cc @@ -0,0 +1,19 @@ +#include <functional> +#include <iostream> +#include <pybind11/pybind11.h> + +#include "csv_writer.hh" +#include "compute.hh" +#include "compute_temperature.hh" +#include "material_points_factory.hh" +#include "particles_factory_interface.hh" +#include "ping_pong_balls_factory.hh" +#include "planets_factory.hh" +#include "system_evolution.hh" + +namespace py = pybind11; + +PYBIND11_MODULE(pypart, m) { + m.doc() = "Python binding for the particles code."; +} +