-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3ef5ca
commit 83fe87b
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#include <set> | ||
#include <memory> | ||
#include <string> | ||
|
||
#include <pybind11/pybind11.h> | ||
#include <pybind11/operators.h> | ||
#include <pybind11/stl.h> | ||
|
||
#include "../../public/SIREN/interactions/Interaction.h" | ||
#include "../../../dataclasses/public/SIREN/dataclasses/Particle.h" | ||
#include "../../../geometry/public/SIREN/geometry/Geometry.h" | ||
#include "../../../utilities/public/SIREN/utilities/Random.h" | ||
|
||
void register_Interaction(pybind11::module_ & m) { | ||
using namespace pybind11; | ||
using namespace siren::interactions; | ||
|
||
class_<Interaction, std::shared_ptr<Interaction>>(m, "Interaction"); | ||
} |