所以我希望有人能在以下方面再次帮助我。我想在另一个类中使用一个类的指针。
汽车.h
class wheel;
class car : public QMainWindow
{
public:
car (QWidget *parent = 0);
wheel *test;
};
class wheel : QGraphicsPixmapItem
{
public:
wheel();
void hoverEnterEvent (QGraphicsSceneHoverEvent*);
};
汽车.cpp
#include "car.h"
wheel::wheel()
{
}
car::car (QWidget*)
{
test = new wheel;
test -> setAcceptHoverEvents (true);
}
wheel::hoverEnterEvent (QGraphicsSceneHoverEvent*)
{
test -> setPixmap (/*thePixmap*/);
}
问题是,我不能在类轮中使用指针“测试”,而且我真的不知道如何在“不”使指针“测试”全局的情况下做到这一点。