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-10-23 16:14:03 +08:00
|
|
|
void onTouchesEnded(const std::vector<Touch*>& touches, cocos2d::Event *event);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
private:
|
2014-03-26 23:33:58 +08:00
|
|
|
cocos2d::Label* _label;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CurlTestScene : public TestScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void runThisTest();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CURL_TEST_H_
|