| 120 | } |
| 121 | |
| 122 | void ofxLuaFileWriter::writeBoolVector(const std::string& tableName, std::vector<bool>& v) { |
| 123 | writeVector<bool>(tableName, LUA_TBOOLEAN, v); |
| 124 | } |
| 125 | |
| 126 | void ofxLuaFileWriter::writeBoolVector(const unsigned int index, std::vector<bool>& v) { |
| 127 | writeVector<bool>(index, LUA_TBOOLEAN, v); |