| 179 | } |
| 180 | |
| 181 | bool TreeImportExport::ConvertStringToBool(const char * strValue) |
| 182 | { |
| 183 | if (strValue) |
| 184 | { |
| 185 | if (strValue[0] == '1') |
| 186 | { |
| 187 | return true; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | return false; |
| 192 | } |
| 193 | |
| 194 | void TreeImportExport::ConvertDwordPtrToString(const DWORD_PTR dwValue) |
| 195 | { |
nothing calls this directly
no outgoing calls
no test coverage detected