CPPLapack
 All Classes Files Functions Variables Friends
_zcovector-constructor.hpp
Go to the documentation of this file.
00001 //=============================================================================
00002 /*! _zcovector constructor */
00003 inline _zcovector::_zcovector()
00004 {VERBOSE_REPORT;
00005   l =0;
00006   array =NULL;
00007 }
00008 
00009 //=============================================================================
00010 /*! _zcovector copy constructor */
00011 inline _zcovector::_zcovector(const _zcovector& vec)
00012 {VERBOSE_REPORT;
00013   l =vec.l;
00014   array =vec.array;
00015   
00016   vec.nullify();
00017 }
00018 
00019 ///////////////////////////////////////////////////////////////////////////////
00020 ///////////////////////////////////////////////////////////////////////////////
00021 ///////////////////////////////////////////////////////////////////////////////
00022 
00023 //=============================================================================
00024 /*! _zcovector destructor */
00025 inline _zcovector::~_zcovector()
00026 {VERBOSE_REPORT;
00027   delete [] array;
00028 }
 All Classes Files Functions Variables Friends