|
Lua_icxx
1.02 (Aug 2011)
|
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 #pragma once 00009 00010 00011 #include <string> 00012 00013 00014 class LuaExpr 00015 { 00016 public: 00017 LuaExpr(const std::string& expr): mExpr(expr) {} 00018 00019 public: 00020 const std::string mExpr; 00021 };