summaryrefslogtreecommitdiff
path: root/indra/lscript/lscript_compile/lscript_heap.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/lscript/lscript_compile/lscript_heap.h
Print done when done.
Diffstat (limited to 'indra/lscript/lscript_compile/lscript_heap.h')
-rw-r--r--indra/lscript/lscript_compile/lscript_heap.h40
1 files changed, 40 insertions, 0 deletions
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
+