Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

gsl::vector_float_view Class Reference

#include <vector_float.h>

Inheritance diagram for gsl::vector_float_view::

gsl::vector_float List of all members.

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)

Constructor & Destructor Documentation

gsl::vector_float_view::vector_float_view ( const vector_float & other ) [inline]
 

Definition at line 338 of file vector_float.h.

00338 :vector_float(){init(other);/*copy(other);*/}

gsl::vector_float_view::vector_float_view ( const vector_float_view & other ) [inline]
 

Definition at line 339 of file vector_float.h.

00339 :vector_float(){init(other);/*copy(other);*/}


Member Function Documentation

void gsl::vector_float_view::change_view ( const vector_float & other ) [inline]
 

Definition at line 342 of file vector_float.h.

00342 {init(other);}

void gsl::vector_float_view::init ( const vector_float & 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 }


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