| 975 | } |
| 976 | |
| 977 | bool ofxLua::writeTableToFile(const std::string& filename, bool recursive) { |
| 978 | ofxLuaFileWriter writer; |
| 979 | writeTable(writer, recursive); |
| 980 | return writer.saveToFile(filename); |
| 981 | } |
| 982 | |
| 983 | bool ofxLua::writeTableToFile(const std::string& tableName, const std::string& filename, bool recursive) { |
| 984 | ofxLuaFileWriter writer; |
nothing calls this directly
no test coverage detected