CPPLapack
 All Classes Files Functions Variables Friends Pages
_zrovector-constructor.hpp
Go to the documentation of this file.
1 //=============================================================================
2 /*! zrovector constructor */
4 {CPPL_VERBOSE_REPORT;
5  //////// initialize ////////
6  l =0;
7  array =NULL;
8 }
9 
10 //=============================================================================
11 /*! _zrovector copy constructor */
13 {CPPL_VERBOSE_REPORT;
14  //////// initialize ////////
15  l =vec.l;
16  array =vec.array;
17 
18  vec.nullify();
19 }
20 
21 ///////////////////////////////////////////////////////////////////////////////
22 ///////////////////////////////////////////////////////////////////////////////
23 ///////////////////////////////////////////////////////////////////////////////
24 
25 //=============================================================================
26 /*! _zrovector destructor */
28 {CPPL_VERBOSE_REPORT;
29  delete [] array;
30 }
CPPL_INT l
vector size
Definition: _zrovector.hpp:9
(DO NOT USE) Smart-temporary Complex Double-precision Row Vector Class
Definition: _zrovector.hpp:3
comple * array
1D array to store vector data
Definition: _zrovector.hpp:10
void nullify() const