mirror of https://github.com/axmolengine/axmol.git
27 lines
418 B
Plaintext
27 lines
418 B
Plaintext
|
namespace cocos2d {
|
||
|
|
||
|
class CCCopying
|
||
|
{
|
||
|
|
||
|
CCObject* copyWithZone(CCZone* pZone);
|
||
|
};
|
||
|
|
||
|
class CCObject : public CCCopying
|
||
|
{
|
||
|
|
||
|
CCObject(void);
|
||
|
~CCObject(void);
|
||
|
|
||
|
void release(void);
|
||
|
void retain(void);
|
||
|
CCObject* autorelease(void);
|
||
|
CCObject* copy(void);
|
||
|
bool isSingleRefrence(void);
|
||
|
unsigned int retainCount(void);
|
||
|
bool isEqual(const CCObject* pObject);
|
||
|
|
||
|
};
|
||
|
}//namespace cocos2d
|
||
|
|
||
|
|