Como chamar a função callfunc no cocos2dx 3.0

Eu tenho que converter o objetivo c ++ em C ++ 11. Fiquei com a seguinte sintaxe. Eu me referi no testcpp e tente a seguinte sintaxe.

Aqui o código que eu tentei:

this->runAction
(
 Sequence::create
 (
  blink,
  CallFunc::create(CC_CALLBACK_0(Hero::stopBlinking, NULL)),    -> issue this line.
  NULL
  )
 );

Mostra erro"no matching function for call to 'bind'" in "CallFunc::create". Qualquer um pode me ajudar ou ajudar.

questionAnswers(4)

yourAnswerToTheQuestion