aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Sparse/DynamicSparseMatrix.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-01-07 15:53:02 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-01-07 15:53:02 +0100
commitc7baf07a3e687784d7fcf7f00475f69f62c510e3 (patch)
tree05a04ef7201bacb07d805fd9405d577481ff5902 /Eigen/src/Sparse/DynamicSparseMatrix.h
parent9111d73017f90aa0a3b005d914567263773c6690 (diff)
add plugin mechanism to sparse objects
Diffstat (limited to 'Eigen/src/Sparse/DynamicSparseMatrix.h')
-rw-r--r--Eigen/src/Sparse/DynamicSparseMatrix.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Eigen/src/Sparse/DynamicSparseMatrix.h b/Eigen/src/Sparse/DynamicSparseMatrix.h
index ec6c3be8f..710b978fe 100644
--- a/Eigen/src/Sparse/DynamicSparseMatrix.h
+++ b/Eigen/src/Sparse/DynamicSparseMatrix.h
@@ -333,6 +333,10 @@ class DynamicSparseMatrix
/** \deprecated use finalize()
* Does nothing. Provided for compatibility with SparseMatrix. */
EIGEN_DEPRECATED void endFill() {}
+
+# ifdef EIGEN_DYNAMICSPARSEMATRIX_PLUGIN
+# include EIGEN_DYNAMICSPARSEMATRIX_PLUGIN
+# endif
};
template<typename Scalar, int _Options, typename _Index>