| 136 | } |
| 137 | |
| 138 | void ofxLuaFileWriter::writeStringVector(const std::string& tableName, std::vector<std::string>& v) { |
| 139 | writeVector<std::string>(tableName, LUA_TSTRING, v); |
| 140 | } |
| 141 | |
| 142 | void ofxLuaFileWriter::writeStringVector(const unsigned int index, std::vector<std::string>& v) { |
| 143 | writeVector<std::string>(index, LUA_TSTRING, v); |