mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
662a9e99f5
- remove cocos2dx folder - change all include paths in cocos2d to be relative
43 lines
691 B
C++
43 lines
691 B
C++
#ifndef __CCINTEGER_H__
|
|
#define __CCINTEGER_H__
|
|
|
|
#include "CCObject.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
/**
|
|
* @addtogroup data_structures
|
|
* @{
|
|
* @js NA
|
|
*/
|
|
|
|
class CC_DLL CCInteger : public CCObject
|
|
{
|
|
GEODE_FRIEND_MODIFY
|
|
public:
|
|
CCInteger(int v)
|
|
: m_nValue(v) {}
|
|
int getValue() const {return m_nValue;}
|
|
|
|
static CCInteger* create(int v)
|
|
{
|
|
CCInteger* pRet = new CCInteger(v);
|
|
pRet->autorelease();
|
|
return pRet;
|
|
}
|
|
|
|
/* override functions
|
|
* @lua NA
|
|
*/
|
|
virtual void acceptVisitor(CCDataVisitor &visitor) { visitor.visit(this); }
|
|
|
|
private:
|
|
int m_nValue;
|
|
};
|
|
|
|
// end of data_structure group
|
|
/// @}
|
|
|
|
NS_CC_END
|
|
|
|
#endif /* __CCINTEGER_H__ */
|