Lua_icxx  1.02 (Aug 2011)
LuaTempResult.cpp
00001 /*
00002 This file is part of the Lua_icxx library. 
00003 Copyright 2010 (c) by Oliver Schoenborn. 
00004 License terms in LICENSE.txt.
00005 */
00006 
00007 
00008 #include "LuaTempResult.h"
00009 
00010 
00011 LuaTempResult::LuaTempResult( const LuaTempResult& rhs ) 
00012 : mLua(NULL), mPrevStackTop(0), mNumRetVal(0), mErrCode(rhs.mErrCode)
00013 {
00014     assert(false);
00015 }
00016 
00017