#ifndef _CURL_TEST_H_ #define _CURL_TEST_H_ #include "cocos2d.h" #include "../testBasic.h" class CurlTest : public Layer { public: CurlTest(); ~CurlTest(); void onTouchesEnded(const std::vector& touches, cocos2d::Event *event); private: cocos2d::LabelTTF* _label; }; class CurlTestScene : public TestScene { public: virtual void runThisTest(); }; #endif // _CURL_TEST_H_