From a41282c0cd17a83b43f53190afa8c9c75391c151 Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Tue, 6 Feb 2024 16:36:13 +0100 Subject: [PATCH] Use precice/precice.hpp header --- cyprecice/Participant.pxd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cyprecice/Participant.pxd b/cyprecice/Participant.pxd index ffe9783b..5241f09b 100644 --- a/cyprecice/Participant.pxd +++ b/cyprecice/Participant.pxd @@ -3,7 +3,7 @@ from libcpp.set cimport set from libcpp.string cimport string from libcpp.vector cimport vector -cdef extern from "precice/Participant.hpp" namespace "precice": +cdef extern from "precice/precice.hpp" namespace "precice": cdef cppclass Participant: # construction and configuration @@ -83,6 +83,4 @@ cdef extern from "precice/Participant.hpp" namespace "precice": void writeGradientData(const string& meshName, const string& dataName, vector[int] vertices, vector[double] gradientValues) - -cdef extern from "precice/Tooling.hpp" namespace "precice": - string getVersionInformation() + string getVersionInformation()