00001
00032 #if 0
00033
00034 #ifndef LL_LSCRIPT_HEAP_H
00035 #define LL_LSCRIPT_HEAP_H
00036
00037 #include "lscript_byteconvert.h"
00038
00039 #include "v3math.h"
00040 #include "llquaternion.h"
00041
00042 class LLScriptHeapEntry
00043 {
00044 public:
00045 LLScriptHeapEntry(U8 *entry);
00046 LLScriptHeapEntry(U8 *heap, S32 offset);
00047 ~LLScriptHeapEntry();
00048
00049 void addString(char *string);
00050
00051 S32 mNext;
00052 U8 mType;
00053 S32 mRefCount;
00054 S32 mListOffset;
00055 U8 *mEntry;
00056 U8 *mData;
00057 U8 *mListEntry;
00058 };
00059
00060 #endif
00061
00062 #endif
00063