feat(python): register config bindings
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
#include "const/bindings.h"
|
#include "const/bindings.h"
|
||||||
#include "composition/bindings.h"
|
#include "composition/bindings.h"
|
||||||
|
#include "config/bindings.h"
|
||||||
|
|
||||||
PYBIND11_MODULE(fourdsse_bindings, m) {
|
PYBIND11_MODULE(fourdsse_bindings, m) {
|
||||||
m.doc() = "Python bindings for the 4DSSE project";
|
m.doc() = "Python bindings for the 4DSSE project";
|
||||||
@@ -13,4 +14,7 @@ PYBIND11_MODULE(fourdsse_bindings, m) {
|
|||||||
|
|
||||||
auto constMod = m.def_submodule("constants", "Constants-module bindings");
|
auto constMod = m.def_submodule("constants", "Constants-module bindings");
|
||||||
register_const_bindings(constMod);
|
register_const_bindings(constMod);
|
||||||
|
|
||||||
|
auto configMod = m.def_submodule("config", "Configuration-module bindings");
|
||||||
|
register_config_bindings(configMod);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user