blob: b529d2211e346f6ca78d24eb04af17ae780573a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// ---------------------------------------------------------------------------
// FILE NAME : LuaRestoreStack.h
// ---------------------------------------------------------------------------
// DESCRIPTION :
//
// Restores the Lua stack to the way we found it :)
//
// ---------------------------------------------------------------------------
// VERSION : 1.00
// DATE : 1-Sep-2005
// AUTHOR : Richard Shephard
// ---------------------------------------------------------------------------
// LIBRARY INCLUDE FILES
#ifndef __LUA_RESTORE_STACK_H__
#define __LUA_RESTORE_STACK_H__
#include "luainc.h"
class CLuaRestoreStack
{
public:
CLuaRestoreStack (CLuaVirtualMachine& vm) : m_pState (NULL)
{
m_pState = (lua_State *) vm;
if (vm.Ok ())
{
m_iTop = lua_gettop (m_pState);
}
}
virtual ~CLuaRestoreStack (void)
{
lua_settop (m_pState, m_iTop);
}
protected:
lua_State *m_pState;
int m_iTop;
};
#endif // __LUA_RESTORE_STACK_H__
|