#include <vector_float.h>
Inheritance diagram for gsl::vector_float_view::

Public Methods | |
| vector_float_view (const vector_float &other) | |
| vector_float_view (const vector_float_view &other) | |
| void | init (const vector_float &other) |
| void | change_view (const vector_float &other) |
|
|
Definition at line 338 of file vector_float.h. 00338 :vector_float(){init(other);/*copy(other);*/} |
|
|
Definition at line 339 of file vector_float.h. 00339 :vector_float(){init(other);/*copy(other);*/} |
|
|
Definition at line 342 of file vector_float.h. 00342 {init(other);}
|
|
|
Definition at line 130 of file vector_float.cc. Referenced by change_view(), and vector_float_view().
00131 {
00132 free();
00133 gsldata = (gsl_vector_float*)malloc(sizeof(gsl_vector_float));
00134 *gsldata = *(other.gslobj());
00135 gsldata->owner = 0;
00136 }
|
1.2.8.1 written by Dimitri van Heesch,
© 1997-2001