| 823 | } |
| 824 | |
| 825 | void ofxLua::getBoolVector(const std::string& tableName, std::vector<bool>& v) { |
| 826 | readVector<bool>(tableName, v, LUA_TBOOLEAN, false); |
| 827 | } |
| 828 | |
| 829 | void ofxLua::getBoolVector(const unsigned int tableIndex, std::vector<bool>& v) { |
| 830 | readVector<bool>(tableIndex, v, LUA_TBOOLEAN, false); |