| 815 | } |
| 816 | |
| 817 | std::string ofxLua::getString(const std::string& name, const std::string& defaultValue) { |
| 818 | return read<std::string>(name, LUA_TSTRING, defaultValue); |
| 819 | } |
| 820 | |
| 821 | std::string ofxLua::getString(const unsigned int index, const std::string& defaultValue) { |
| 822 | return read<std::string>(index, LUA_TSTRING, defaultValue); |