2012-04-19 14:35:52 +08:00
|
|
|
#ifndef _CURL_TEST_H_
|
|
|
|
#define _CURL_TEST_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "../BaseTest.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(CurlTests);
|
|
|
|
|
|
|
|
class CurlTest : public TestCase
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(CurlTest);
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
CurlTest();
|
|
|
|
~CurlTest();
|
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void onTouchesEnded(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event *event);
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
private:
|
2015-04-03 14:31:03 +08:00
|
|
|
cocos2d::Label* _label;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CURL_TEST_H_
|