code reorganization and more documentation

This commit is contained in:
Hans Dembinski
2016-04-25 21:31:45 -04:00
parent 88d3a2430c
commit e4951de999
16 changed files with 268 additions and 337 deletions

View File

@@ -7,6 +7,7 @@
namespace boost {
namespace histogram {
void register_axis_types();
void register_basic_histogram();
void register_histogram();
}
@@ -17,6 +18,7 @@ BOOST_PYTHON_MODULE(histogram)
#ifdef USE_NUMPY
import_array();
#endif
boost::histogram::register_axis_types();
boost::histogram::register_basic_histogram();
boost::histogram::register_histogram();
}