mirror of https://github.com/axmolengine/axmol.git
fixed #760: implement functions in .cpp
This commit is contained in:
parent
c3a034a19b
commit
101f076a44
|
@ -835,6 +835,18 @@ void CCDirector::setContentScaleFactor(CGFloat scaleFactor)
|
|||
}
|
||||
}
|
||||
|
||||
CCNode* getNotificationNode()
|
||||
{
|
||||
return m_pNotificationNode;
|
||||
}
|
||||
|
||||
void setNotificationNode(CCNode *node)
|
||||
{
|
||||
CC_SAFE_RELEASE(m_pNotificationNode);
|
||||
m_pNotificationNode = node;
|
||||
CC_SAFE_RETAIN(m_pNotificationNode);
|
||||
}
|
||||
|
||||
void CCDirector::applyOrientation(void)
|
||||
{
|
||||
CCSize s = m_obWinSizeInPixels;
|
||||
|
|
|
@ -35,7 +35,6 @@ THE SOFTWARE.
|
|||
#include "CCGeometry.h"
|
||||
#include "CCEGLView.h"
|
||||
#include "CCGL.h"
|
||||
#include "CCNode.h"
|
||||
|
||||
namespace cocos2d {
|
||||
|
||||
|
@ -139,6 +138,7 @@ class CCLabelTTF;
|
|||
class CCScene;
|
||||
class CCEGLView;
|
||||
class CCProjectionProtocol;
|
||||
class CCNode;
|
||||
|
||||
/**
|
||||
@brief Class that creates and handle the main Window and manages how
|
||||
|
@ -216,14 +216,8 @@ public:
|
|||
Useful to hook a notification object, like CCNotifications (http://github.com/manucorporat/CCNotifications)
|
||||
@since v0.99.5
|
||||
*/
|
||||
inline CCNode* getNotificationNode() { return m_pNotificationNode; }
|
||||
inline void setNotificationNode(CCNode *node)
|
||||
{
|
||||
CC_SAFE_RELEASE(m_pNotificationNode);
|
||||
m_pNotificationNode = node;
|
||||
CC_SAFE_RETAIN(m_pNotificationNode);
|
||||
}
|
||||
|
||||
CCNode* getNotificationNode();
|
||||
void setNotificationNode(CCNode *node);
|
||||
|
||||
// window size
|
||||
|
||||
|
|
Loading…
Reference in New Issue