00001 //============================================================================= 00002 /*! nullify all the vector data */ 00003 inline void _zcovector::nullify() const 00004 {VERBOSE_REPORT; 00005 l=0; 00006 array=NULL; 00007 } 00008 00009 //============================================================================= 00010 /*! destroy all the vector data */ 00011 inline void _zcovector::destroy() const 00012 {VERBOSE_REPORT; 00013 delete [] array; 00014 array=NULL; 00015 }