Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Context.cpp

This file was deleted.

30 changes: 0 additions & 30 deletions bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Context.h

This file was deleted.

2 changes: 1 addition & 1 deletion bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_Node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ void moduleAddNode(py::module &m) {
py_shared_ptr<sofa::core::objectmodel::BaseNode>>(m, "BaseNode", "Base class for simulation node");

py::class_<Node, sofa::core::objectmodel::BaseNode,
sofa::core::objectmodel::Context, py_shared_ptr<Node>>
sofa::core::objectmodel::BaseContext, py_shared_ptr<Node>>
p(m, "Node", sofapython3::doc::sofa::core::Node::Class);

PythonFactory::registerType<sofa::simulation::Node>(
Expand Down
2 changes: 0 additions & 2 deletions bindings/Sofa/src/SofaPython3/Sofa/Core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ set(HEADER_FILES
${CMAKE_CURRENT_SOURCE_DIR}/Binding_BaseContext.h
${CMAKE_CURRENT_SOURCE_DIR}/Binding_ContactListener.h
${CMAKE_CURRENT_SOURCE_DIR}/Binding_ContactListener_doc.h
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Context.h
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Component.h
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Component.inl
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Component_doc.h
Expand Down Expand Up @@ -70,7 +69,6 @@ set(SOURCE_FILES
${CMAKE_CURRENT_SOURCE_DIR}/Binding_BaseCamera.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Binding_BaseContext.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Binding_ContactListener.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Context.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Component.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Binding_Controller.cpp
${CMAKE_CURRENT_SOURCE_DIR}/Binding_DataEngine.cpp
Expand Down
2 changes: 0 additions & 2 deletions bindings/Sofa/src/SofaPython3/Sofa/Core/Submodule_Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ using sofa::helper::logging::Message;
#include <SofaPython3/Sofa/Core/Binding_ForceField.h>
#include <SofaPython3/Sofa/Core/Binding_Mass.h>
#include <SofaPython3/Sofa/Core/Binding_ContactListener.h>
#include <SofaPython3/Sofa/Core/Binding_Context.h>
#include <SofaPython3/Sofa/Core/Binding_Component.h>
#include <SofaPython3/Sofa/Core/Binding_Controller.h>
#include <SofaPython3/Sofa/Core/Binding_DataEngine.h>
Expand Down Expand Up @@ -142,7 +141,6 @@ PYBIND11_MODULE(Core, core)
moduleAddBaseComponent(core);
moduleAddBaseCamera(core);
moduleAddContactListener(core);
moduleAddContext(core);
moduleAddComponent(core);
moduleAddController(core);
moduleAddDataEngine(core);
Expand Down
Loading