Ivan Kush
Ivan Kush

Reputation: 3157

Forward declaration of types MatrixXd & VectorXd?

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), 
{

}

Upvotes: 6

Views: 2494

Answers (2)

Ali Hares
Ali Hares

Reputation: 51

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>;
}

Upvotes: 3

Lightness Races in Orbit
Lightness Races in Orbit

Reputation: 385385

No, you cannot "forward declare" type aliases: neither MatrixXd nor VectorXd are classes; 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.

Upvotes: 5

Related Questions