| 2211 | } |
| 2212 | |
| 2213 | cString cTaskLib::GetMatchString(int x) |
| 2214 | { |
| 2215 | cString s; |
| 2216 | if (x >= 0 && x < (int)m_strings.size()){ |
| 2217 | s = m_strings[x]; |
| 2218 | } else { |
| 2219 | s = cString(""); |
| 2220 | } |
| 2221 | |
| 2222 | return s; |
| 2223 | } |
| 2224 | |
| 2225 | |
| 2226 | void cTaskLib::Load_MatchProdStr(const cString& name, const cString& argstr, cEnvReqs& envreqs, Feedback& feedback) |
no test coverage detected