Maybe someone knows, is it possible in the Eigen to forward declare types MatrixXd & VectorXd?
While compiling, I get the following error:
/usr/include/eigen3/Eigen/src/Core/Matrix.h:372:34: error: conflicting declaration ‘typedef class Eigen::Matrix Eigen::MatrixXd’
typedef Matrix Matrix##SizeSuffix##TypeSuffix;
SIMP.h
#ifndef SIMP_H
#define SIMP_H
namespace Eigen
{
class MatrixXd;
class VectorXd;
}
class SIMP {
public:
SIMP(Eigen::MatrixXd * gsm, Eigen::VectorXd * displ);
SIMP ( const SIMP& other ) = delete;
~SIMP(){}
SIMP& operator= ( const SIMP& other ) = delete;
bool operator== ( const SIMP& other ) = delete;
private:
Eigen::MatrixXd * m_gsm;
Eigen::VectorXd * m_displ;
};
#endif // SIMP_H
SIMP.cpp
#include "SIMP.h"
#include <Eigen/Core>
SIMP::SIMP( Eigen::MatrixXd * gsm, Eigen::VectorXd * displ) :
m_gsm(gsm),
m_displ(displ),
{
}
No, you cannot "forward declare" type aliases: neither MatrixXd
nor VectorXd
are class
es; they are type aliases.
The best you can do is manually introduce the type aliases early yourself by writing out the typedef
statement. This is probably a bad idea.
BTW that last line of output is highly suspicious; it looks like a macro definition, which should definitely not be turning up in a compiler error.
You can do it like this:
namespace Eigen {
template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
class Matrix;
using MatrixXd = Matrix<double, -1, -1, 0, -1, -1>;
using VectorXd = Matrix<double, -1, 1, 0, -1, 1>;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With