We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05963c commit 1ac2b7cCopy full SHA for 1ac2b7c
CMakeLists.txt
@@ -128,6 +128,7 @@ SET(${PROJECT_NAME}_HEADERS
128
include/eigenpy/ufunc.hpp
129
include/eigenpy/register.hpp
130
include/eigenpy/stride.hpp
131
+ include/eigenpy/swig.hpp
132
include/eigenpy/version.hpp
133
)
134
include/eigenpy/swig.hpp
@@ -0,0 +1,18 @@
1
+//
2
+// Copyright (c) 2020 INRIA
3
4
+
5
+#ifndef __eigenpy_swig_hpp__
6
+#define __eigenpy_swig_hpp__
7
8
+namespace eigenpy
9
+{
10
+ struct PySwigObject
11
+ {
12
+ PyObject_HEAD
13
+ void * ptr;
14
+ const char * desc;
15
+ };
16
+}
17
18
+#endif // ifndef __eigenpy_swig_hpp__
0 commit comments