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