'Point' was not declared in this scope

I got this message when I used to position my UILayer in the scene. Do i missing some imports? please help me. thanks

UILayer *layer=UILayer::create();
layer->setPosition(Point(100,100));
this->addChild(layer,207);

I’d try using

cocos2d::Point(100,100)

@Maxxx
thanks, it helps