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

core: remove deprecated signature

parent 031524b2
No related branches found
No related tags found
No related merge requests found
/* /*
* Copyright 2014-2019, CNRS * Copyright 2014-2019, CNRS
* Copyright 2018-2020, INRIA * Copyright 2018-2023, INRIA
*/ */
#ifndef __eigenpy_eigenpy_hpp__ #ifndef __eigenpy_eigenpy_hpp__
#define __eigenpy_eigenpy_hpp__ #define __eigenpy_eigenpy_hpp__
#include "eigenpy/fwd.hpp" #include "eigenpy/fwd.hpp"
#include "eigenpy/deprecated.hpp"
#include "eigenpy/eigen-typedef.hpp" #include "eigenpy/eigen-typedef.hpp"
#include "eigenpy/expose.hpp" #include "eigenpy/expose.hpp"
...@@ -20,18 +19,10 @@ namespace eigenpy { ...@@ -20,18 +19,10 @@ namespace eigenpy {
*/ */
void EIGENPY_DLLAPI enableEigenPy(); void EIGENPY_DLLAPI enableEigenPy();
/* Enable the Eigen--Numpy serialization for the templated MatrixBase class. /* Enable the Eigen--Numpy serialization for the templated MatType class.*/
* The second template argument is used for inheritance of Eigen classes. If
* using a native Eigen::MatrixBase, simply repeat the same arg twice. */
template <typename MatType> template <typename MatType>
void enableEigenPySpecific(); void enableEigenPySpecific();
/* Enable the Eigen--Numpy serialization for the templated MatrixBase class.
* The second template argument is used for inheritance of Eigen classes. If
* using a native Eigen::MatrixBase, simply repeat the same arg twice. */
template <typename MatType, typename EigenEquivalentType>
EIGENPY_DEPRECATED void enableEigenPySpecific();
template <typename Scalar, int Options> template <typename Scalar, int Options>
EIGEN_DONT_INLINE void exposeType() { EIGEN_DONT_INLINE void exposeType() {
EIGENPY_MAKE_TYPEDEFS_ALL_SIZES(Scalar, Options, s); EIGENPY_MAKE_TYPEDEFS_ALL_SIZES(Scalar, Options, s);
......
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