3 #ifndef __CCJSONDATA_H__
4 #define __CCJSONDATA_H__
6 #include "cocoa/CCObject.h"
8 using namespace cocos2d;
16 : m_nValue(v), m_dValue(v) {}
19 : m_nValue(static_cast<int>(v)), m_dValue(v) {}
33 int getIntValue()
const {
return m_nValue; }
34 double getDoubleValue()
const {
return m_dValue; }
35 void setValue(
int v) { m_nValue = v; m_dValue = v; }
36 void setValue(
double v) { m_nValue =
static_cast<int>(v); m_dValue = v; }
49 #endif // #ifndef __CCJSONDATA_H__
Definition: CCJSONData.h:10
Definition: CCJSONData.h:39