2012-04-19 14:35:52 +08:00
|
|
|
#ifndef _CURL_TEST_H_
|
|
|
|
#define _CURL_TEST_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "../testBasic.h"
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class CurlTest : public Layer
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
CurlTest();
|
|
|
|
~CurlTest();
|
|
|
|
|
2013-07-26 06:53:24 +08:00
|
|
|
virtual void ccTouchesEnded(cocos2d::Set *touches, cocos2d::Event *event);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
private:
|
2013-06-20 14:17:10 +08:00
|
|
|
cocos2d::LabelTTF* _label;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CurlTestScene : public TestScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void runThisTest();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CURL_TEST_H_
|