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