Files
2014-08-20 16:15:02 +08:00

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