LocalStorage.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /****************************************************************************
  2. Copyright (c) 2012 Zynga Inc.
  3. Copyright (c) 2013-2016 Chukong Technologies Inc.
  4. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
  5. http://www.cocos2d-x.org
  6. Permission is hereby granted, free of charge, to any person obtaining a copy
  7. of this software and associated documentation files (the "Software"), to deal
  8. in the Software without restriction, including without limitation the rights
  9. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. copies of the Software, and to permit persons to whom the Software is
  11. furnished to do so, subject to the following conditions:
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. THE SOFTWARE.
  21. ****************************************************************************/
  22. #ifndef __JSB_LOCALSTORAGE_H
  23. #define __JSB_LOCALSTORAGE_H
  24. #include <string>
  25. #include "platform/CCPlatformMacros.h"
  26. /**
  27. * @addtogroup storage
  28. * @{
  29. */
  30. /** Local Storage support for the JS Bindings.*/
  31. /** Initializes the database. If path is null, it will create an in-memory DB. */
  32. void CC_DLL localStorageInit( const std::string& fullpath = "");
  33. /** Frees the allocated resources. */
  34. void CC_DLL localStorageFree();
  35. /** Sets an item in the JS. */
  36. void CC_DLL localStorageSetItem( const std::string& key, const std::string& value);
  37. /** Gets an item from the JS. */
  38. bool CC_DLL localStorageGetItem( const std::string& key, std::string *outItem );
  39. /** Removes an item from the JS. */
  40. void CC_DLL localStorageRemoveItem( const std::string& key );
  41. /** Removes all items from the JS. */
  42. void CC_DLL localStorageClear();
  43. // end group
  44. /// @}
  45. #endif // __JSB_LOCALSTORAGE_H