| 200 | } |
| 201 | |
| 202 | LONG CCmdLineParser::GetLongVal(LPCWSTR sKey) const |
| 203 | { |
| 204 | CValsMap::const_iterator it = findKey(sKey); |
| 205 | if (it == m_valueMap.cend()) |
| 206 | return 0; |
| 207 | return _wtol(it->second.c_str()); |
| 208 | } |
| 209 | |
| 210 | __int64 CCmdLineParser::GetLongLongVal(LPCWSTR sKey) const |
| 211 | { |