/* * MatrixContent.hpp * * Created on: Jul 2, 2010 * Author: crueger */ #ifndef MATRIXCONTENT_HPP_ #define MATRIXCONTENT_HPP_ /** * !file * The way GSL works does not allow for forward definitions of the structures. * Because of this the pointer to the gsl_matrix struct is wrapped inside another * (dumb) object that allows for forward definitions. All methods of this class * are empty, to allow for a maximum of flexibility. */ #include struct MatrixContent{ gsl_matrix * content; }; #endif /* MATRIXCONTENT_HPP_ */