put the resurected files into the Eigen namespace

This commit is contained in:
Gael Guennebaud
2012-06-22 16:35:20 +02:00
parent 62c504e7bf
commit cc6dd55028
3 changed files with 12 additions and 0 deletions

View File

@@ -25,6 +25,8 @@
#ifndef EIGEN_PRODUCT_H
#define EIGEN_PRODUCT_H
namespace Eigen {
template<typename Lhs, typename Rhs> class Product;
template<typename Lhs, typename Rhs, typename StorageKind> class ProductImpl;
@@ -124,4 +126,6 @@ prod(const Lhs& lhs, const Rhs& rhs)
return Product<Lhs,Rhs>(lhs,rhs);
}
} // end namespace Eigen
#endif // EIGEN_PRODUCT_H