| 350 | } |
| 351 | |
| 352 | void CAUserDefault::setStringForKey(const char* pKey, const std::string & value) |
| 353 | { |
| 354 | #ifdef KEEP_COMPATABILITY |
| 355 | deleteNodeByKey(pKey); |
| 356 | #endif |
| 357 | |
| 358 | return setStringForKeyJNI(pKey, value.c_str()); |
| 359 | } |
| 360 | |
| 361 | CAUserDefault* CAUserDefault::sharedUserDefault() |
| 362 | { |
nothing calls this directly
no test coverage detected