| 56 | } |
| 57 | |
| 58 | bool CommandLineArgEnumerator::TryPopInteger(int32_t* result) |
| 59 | { |
| 60 | char const* arg; |
| 61 | if (TryPopString(&arg)) |
| 62 | { |
| 63 | *result = static_cast<int32_t>(atol(arg)); |
| 64 | return true; |
| 65 | } |
| 66 | |
| 67 | return false; |
| 68 | } |
| 69 | |
| 70 | bool CommandLineArgEnumerator::TryPopReal(float* result) |
| 71 | { |