mirror of
https://github.com/wu736139669/SmallGame_Cocos2dx.git
synced 2026-08-05 06:23:09 +00:00
21 lines
501 B
C++
21 lines
501 B
C++
/***************************************************************
|
|
*
|
|
*
|
|
* 作者: 王少培
|
|
* 文件名:
|
|
* 创建时间: 2014-3-20
|
|
*
|
|
***************************************************************/
|
|
#ifndef _CJsonHelper_H_
|
|
#define _CJsonHelper_H_
|
|
#include "cocos-ext.h"
|
|
using namespace std;
|
|
USING_NS_CC;
|
|
class CJsonHelper
|
|
{
|
|
public:
|
|
static bool getJsonFromFile(const char* fileName);
|
|
static bool getJsonFromString(const char* pszData,CSJson::Value& Val);
|
|
};
|
|
|
|
#endif |