gsl::vector_int_view Class Reference
#include <vector_int.h>
Inheritance diagram for gsl::vector_int_view::
List of all members.
Public Methods
Constructor & Destructor Documentation
gsl::vector_int_view::vector_int_view (
const vector_int & other ) [inline]
gsl::vector_int_view::vector_int_view (
const vector_int_view & other ) [inline]
Member Function Documentation
void gsl::vector_int_view::change_view (
const vector_int & other ) [inline]
void gsl::vector_int_view::init (
const vector_int & other )
Definition at line 130 of file vector_int.cc.
Referenced by change_view(), and vector_int_view().
00131 {
00132 free();
00133 gsldata = (gsl_vector_int*)malloc(sizeof(gsl_vector_int));
00134 *gsldata = *(other.gslobj());
00135 gsldata->owner = 0;
00136 }
The documentation for this class was generated from the following files:
Generated at Sun Dec 16 23:44:46 2001 for gslwrap by
doxygen1.2.8.1 written by Dimitri van Heesch,
© 1997-2001