00001 // rdMemory.h 00002 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 // Copyright 2002 Realistic Dynamics, Inc. 00004 // All rights reserved. 00005 // 00006 // Please do not read, copy, distribute, or use without permission. 00007 // Contact: Frank C. Anderson, fca@RealisticDynamics.com 00008 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00009 #include "rdToolsDLL.h" 00010 //============================================================================= 00011 #ifndef __rdMemory_h__ 00012 #define __rdMemory_h__ 00013 00014 00015 00016 00017 //============================================================================= 00018 //============================================================================= 00025 class RDTOOLS_API rdMemory { 00026 00027 //============================================================================= 00028 // DATA 00029 //============================================================================= 00030 private: 00031 00032 00033 //============================================================================= 00034 // METHODS 00035 //============================================================================= 00036 public: 00037 // STRING ARRAYS 00038 static char** NewArrayOfStrings(int aNumStrings,int aStringLength); 00039 static void DeleteArrayOfStrings(int aNumPointers,char **aArray); 00040 00041 //============================================================================= 00042 }; // END CLASS rdMemory 00043 //============================================================================= 00044 //============================================================================= 00045 00046 #endif // __rdMemory_h__
1.3