c++如何将指针 转为 引用 传递给方放参数
//定义了个
osgManipulator::PointerInfo* _pointer;
//但是在 dragger 拖拽器中 handle中 Pointer 是引用
dragger->handle((*_pointer),ea,aa);
否则会报错
严重性 代码 说明 项目 文件 行 禁止显示状态
错误 C2664 “bool osgManipulator::Dragger::handle(const osgManipulator::PointerInfo &,const osgGA::GUIEventAdapter &,osgGA::GUIActionAdapter &)”: 无法将参数 1 从“osgManipulator::PointerInfo *”转换为“const osgManipulator::PointerInfo &” osgstudyhits