before the purge

This commit is contained in:
Jasmine 2025-03-11 19:07:05 -04:00
parent 703a707426
commit de260a0f1b
9 changed files with 10 additions and 0 deletions

View file

@ -53,6 +53,7 @@ NS_CC_EXT_BEGIN
class CC_DLL CCControlButton : public CCControl
{
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlButton, CCControl)
CCControlButton();
virtual ~CCControlButton();
virtual void needsLayout(void);

View file

@ -60,6 +60,7 @@ class CC_DLL CCControlHuePicker : public CCControl
CC_SYNTHESIZE_READONLY(CCPoint, m_startPos, StartPos);
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlHuePicker, CCControl)
CCControlHuePicker();
virtual ~CCControlHuePicker();
virtual bool initWithTargetAndPos(CCNode* target, CCPoint pos);

View file

@ -42,6 +42,7 @@ NS_CC_EXT_BEGIN
class CC_DLL CCControlPotentiometer : public CCControl
{
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlPotentiometer, CCControl)
CCControlPotentiometer();
virtual ~CCControlPotentiometer();
/**

View file

@ -64,6 +64,7 @@ public:
int boxSize;
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlSaturationBrightnessPicker, CCControl)
CCControlSaturationBrightnessPicker();
virtual ~CCControlSaturationBrightnessPicker();
virtual bool initWithTargetAndPos(CCNode* target, CCPoint pos);

View file

@ -69,6 +69,7 @@ class CC_DLL CCControlSlider: public CCControl
CC_SYNTHESIZE_RETAIN(CCSprite*, m_backgroundSprite, BackgroundSprite);
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlSlider, CCControl)
CCControlSlider();
virtual ~CCControlSlider();

View file

@ -49,6 +49,7 @@ typedef enum
class CC_DLL CCControlStepper : public CCControl
{
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlStepper, CCControl)
CCControlStepper();
virtual ~CCControlStepper();

View file

@ -49,6 +49,7 @@ class CC_DLL CCControlSwitchSprite;
class CC_DLL CCControlSwitch : public CCControl
{
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCControlSwitch, CCControl)
CCControlSwitch();
virtual ~CCControlSwitch();
/** Initializes a switch with a mask sprite, on/off sprites for on/off states and a thumb sprite. */

View file

@ -140,6 +140,7 @@ public:
class CC_DLL CCTableView : public CCScrollView, public CCScrollViewDelegate
{
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCTableView, CCScrollView)
/**
* @js ctor
*/

View file

@ -49,6 +49,8 @@ class CC_DLL CCHttpClient : public CCObject
{
GEODE_FRIEND_MODIFY
public:
GEODE_CUSTOM_CONSTRUCTOR_COCOS(CCHttpClient, CCObject)
/** Return the shared instance **/
static CCHttpClient *getInstance();