| 864 | } |
| 865 | |
| 866 | void ofxLua::setString(const std::string& name, const std::string value) { |
| 867 | write<std::string>(name, LUA_TSTRING, value); |
| 868 | } |
| 869 | |
| 870 | void ofxLua::setString(const unsigned int index, const std::string value) { |
| 871 | write<std::string>(index, LUA_TSTRING, value); |