// 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 struct NumTraits; template class Matrix; template class Flagged; template class NestByValue; template class SwapWrapper; template class Minor; template::Flags&DirectAccessBit> class Block; template class Transpose; template class Conjugate; template class CwiseNullaryOp; template class CwiseUnaryOp; template class CwiseBinaryOp; template class Product; template class DiagonalMatrix; template class DiagonalCoeffs; template class Map; template class Part; template class Extract; template class Cwise; template class PartialRedux; template class PartialReduxExpr; template class WithFormat; template struct ei_product_mode; template::value> struct ProductReturnType; template struct ei_scalar_sum_op; template struct ei_scalar_difference_op; template struct ei_scalar_product_op; template struct ei_scalar_quotient_op; template struct ei_scalar_opposite_op; template struct ei_scalar_conjugate_op; template struct ei_scalar_real_op; template struct ei_scalar_abs_op; template struct ei_scalar_abs2_op; template struct ei_scalar_sqrt_op; template struct ei_scalar_exp_op; template struct ei_scalar_log_op; template struct ei_scalar_cos_op; template struct ei_scalar_sin_op; template struct ei_scalar_pow_op; template struct ei_scalar_inverse_op; template struct ei_scalar_square_op; template struct ei_scalar_cube_op; template struct ei_scalar_cast_op; template struct ei_scalar_multiple_op; template struct ei_scalar_quotient1_op; template struct ei_scalar_min_op; template struct ei_scalar_max_op; template struct ei_scalar_random_op; template struct ei_scalar_add_op; struct IoFormat; template void ei_cache_friendly_product( int _rows, int _cols, int depth, bool _lhsRowMajor, const Scalar* _lhs, int _lhsStride, bool _rhsRowMajor, const Scalar* _rhs, int _rhsStride, bool resRowMajor, Scalar* res, int resStride); template class LU; template class QR; template class SVD; template class Cholesky; template class CholeskyWithoutSquareRoot; // Geometry module: template class Cross; template class Quaternion; template class Rotation2D; template class AngleAxis; template class Transform; #endif // EIGEN_FORWARDDECLARATIONS_H