00001 //============================================================================= 00002 /*! destroy all the vector data */ 00003 inline void _dcovector::destroy() const 00004 { 00005 #ifdef CPPSL_DEBUG 00006 std::cerr << "# [NOTE] _dcovector::destroy() const" 00007 << " An array at " << Array 00008 << " is going to be destroyed." << std::endl; 00009 #endif//CPPSL_DEBUG 00010 00011 delete [] Array; 00012 }