#include <vector_int.h>
Inheritance diagram for gsl::vector_int_view::
Public Methods | |
vector_int_view (const vector_int &other) | |
vector_int_view (const vector_int_view &other) | |
void | init (const vector_int &other) |
void | change_view (const vector_int &other) |
|
Definition at line 338 of file vector_int.h. 00338 :vector_int(){init(other);/*copy(other);*/} |
|
Definition at line 339 of file vector_int.h. 00339 :vector_int(){init(other);/*copy(other);*/} |
|
Definition at line 342 of file vector_int.h. 00342 {init(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 } |