| 42 | } |
| 43 | |
| 44 | void ofxLuaFileWriter::beginCommentBlock() { |
| 45 | if(commentBlock) { |
| 46 | ofLogWarning("ofxLua") << "Comment block already begun"; |
| 47 | return; |
| 48 | } |
| 49 | commentBlock = true; |
| 50 | buffer << "--[[" << std::endl; |
| 51 | } |
| 52 | |
| 53 | void ofxLuaFileWriter::endCommentBlock() { |
| 54 | if(!commentBlock) { |