%module ImproperSystemForce %{ #include "../topology/PeriodicBoundaryConditions.h" #include "../topology/VacuumBoundaryConditions.h" #include "../topology/SemiGenericTopology.h" #include "ImproperSystemForce.h" ProtoMol::ImproperSystemForce * newISFPBC(ProtoMol::ImproperSystemForce i) { ProtoMol::ImproperSystemForce * isf = new ProtoMol::ImproperSystemForce(); *isf = i; return isf; } ProtoMol::ImproperSystemForce * newISFVBC(ProtoMol::ImproperSystemForce i) { ProtoMol::ImproperSystemForce * isf = new ProtoMol::ImproperSystemForce(); *isf = i; return isf; } %} %include "std_vector.i" %template() std::vector; %include "../base/Real.h" %include "../base/Proxy.h" %include "../base/Vector3D.h" %include "../base/AbstractEnumType.h" %include "../base/simpleTypes.h" %include "../base/ConstraintValueType.h" %include "../base/ValueType.h" %include "../base/Value.h" %include "../base/Parameter.h" %include "../base/Vector3DBlock.h" %include "../base/MakeableDefinition.h" %include "../base/Makeable.h" %include "Force.h" %include "SystemForce.h" %include "../topology/Torsion.h" %include "MTorsionSystemForce.h" %template(MTSF_Periodic) ProtoMol::MTorsionSystemForce ; %template(MTSF_Vacuum) ProtoMol::MTorsionSystemForce ; %include "ImproperSystemForce.h" %template(ISF_Periodic) ProtoMol::ImproperSystemForce ; %template(ISF_Vacuum) ProtoMol::ImproperSystemForce ; ProtoMol::ImproperSystemForce * newISFPBC(ProtoMol::ImproperSystemForce i); ProtoMol::ImproperSystemForce * newISFVBC(ProtoMol::ImproperSystemForce i);