| 839 | } |
| 840 | |
| 841 | void ofxLua::getStringVector(const std::string& tableName, std::vector<std::string>& v) { |
| 842 | readVector<std::string>(tableName, v, LUA_TSTRING, ""); |
| 843 | } |
| 844 | |
| 845 | void ofxLua::getStringVector(const unsigned int tableIndex, std::vector<std::string>& v) { |
| 846 | readVector<std::string>(tableIndex, v, LUA_TSTRING, ""); |