| 112 | } |
| 113 | |
| 114 | void ofxLuaFileWriter::writeString(const std::string& name, std::string value) { |
| 115 | write<std::string>(name, LUA_TSTRING, value); |
| 116 | } |
| 117 | |
| 118 | void ofxLuaFileWriter::writeString(const unsigned int index, std::string value) { |
| 119 | write<std::string>(index, LUA_TSTRING, value); |
no outgoing calls
no test coverage detected