/* * VectorContent.hpp * * Created on: Jul 2, 2010 * Author: crueger */ #ifndef VECTORCONTENT_HPP_ #define VECTORCONTENT_HPP_ /** * !file * The way GSL works does not allow for forward definitions of the structures. * Because of this the pointer to the gsl_vector 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 VectorContent{ gsl_vector *content; }; #endif /* VECTORCONTENT_HPP_ */