From 420b91db29485df39fd6e724e782c449158811cb Mon Sep 17 00:00:00 2001 From: James Cook Date: Tue, 2 Jan 2007 08:33:20 +0000 Subject: Print done when done. --- indra/lscript/lscript_compile/lscript_heap.h | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 indra/lscript/lscript_compile/lscript_heap.h (limited to 'indra/lscript/lscript_compile/lscript_heap.h') diff --git a/indra/lscript/lscript_compile/lscript_heap.h b/indra/lscript/lscript_compile/lscript_heap.h new file mode 100644 index 0000000000..5b04ba768a --- /dev/null +++ b/indra/lscript/lscript_compile/lscript_heap.h @@ -0,0 +1,40 @@ +/** + * @file lscript_heap.h + * @brief classes to manage script heap + * + * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#if 0 + +#ifndef LL_LSCRIPT_HEAP_H +#define LL_LSCRIPT_HEAP_H + +#include "lscript_byteconvert.h" +//#include "vmath.h" +#include "v3math.h" +#include "llquaternion.h" + +class LLScriptHeapEntry +{ +public: + LLScriptHeapEntry(U8 *entry); + LLScriptHeapEntry(U8 *heap, S32 offset); + ~LLScriptHeapEntry(); + + void addString(char *string); + + S32 mNext; + U8 mType; + S32 mRefCount; + S32 mListOffset; + U8 *mEntry; + U8 *mData; + U8 *mListEntry; +}; + +#endif + +#endif + -- cgit v1.2.3