// This file is part of Eigen, a lightweight C++ template library // for linear algebra. Eigen itself is part of the KDE project. // // Copyright (C) 2006-2008 Benoit Jacob // // Eigen is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 3 of the License, or (at your option) any later version. // // Alternatively, you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of // the License, or (at your option) any later version. // // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the // GNU General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License and a copy of the GNU General Public License along with // Eigen. If not, see . #ifndef EIGEN_FORWARDDECLARATIONS_H #define EIGEN_FORWARDDECLARATIONS_H template struct ei_traits; template class Matrix; template class MatrixRef; template class Minor; template class Block; template class Transpose; template class Conjugate; template class CwiseBinaryOp; template class CwiseUnaryOp; template class Product; template class Random; template class Zero; template class Ones; template class DiagonalMatrix; template class DiagonalCoeffs; template class Identity; template class Map; template class Eval; template class EvalOMP; struct ScalarProductOp; struct ScalarQuotientOp; struct ScalarOppositeOp; struct ScalarConjugateOp; struct ScalarAbsOp; template struct ScalarCastOp; template struct ScalarMultipleOp; template struct Reference { typedef T Type; }; template struct Reference > { typedef MatrixRef > Type; }; #endif // EIGEN_FORWARDDECLARATIONS_H