Skip to content
Snippets Groups Projects
Verified Commit 1ac2b7cd authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: add SWIG data object

parent d05963c0
No related branches found
No related tags found
No related merge requests found
......@@ -128,6 +128,7 @@ SET(${PROJECT_NAME}_HEADERS
include/eigenpy/ufunc.hpp
include/eigenpy/register.hpp
include/eigenpy/stride.hpp
include/eigenpy/swig.hpp
include/eigenpy/version.hpp
)
......
//
// Copyright (c) 2020 INRIA
//
#ifndef __eigenpy_swig_hpp__
#define __eigenpy_swig_hpp__
namespace eigenpy
{
struct PySwigObject
{
PyObject_HEAD
void * ptr;
const char * desc;
};
}
#endif // ifndef __eigenpy_swig_hpp__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment