新建一个C++类 ,命名为NetTime,继承自CCNode并重写init()方法。然后引入CCHttpClient和rapidjson需要的头文件。我们的需求是可以返回NetTime的年,月,日,小时,分和秒,分别定义它们的private字段和public方法:
#ifndef __NETTIME_H__ #define __NETTIME_H__ #include "cocos2d.h" #include "cocos-ext.h" #include "CocoStudio\Json\rapidjson\rapidjson.h" using namespace cocos2d; using namespace extension; using namespace rapidjson; class NetTime:public CCNode { public: CREATE_FUNC(NetTime); int getYear(){ return _year; }; int getMonth(){ return _month; }; int getDay(){ return _day; }; int getHour(){ return _hour; }; int getMinute(){ return _minute; }; int getSecond(){ return _second; }; void getNetTime(); void requestNetTime(); private: