1 Star 0 Fork 0

侯宇阳/MessageManager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
widget.h 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
#ifndef WIDGET_H
#define WIDGET_H
#include "msgmanager.h"
\
#include <QWidget>
#include <QVariant>
#include <QDebug>
QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE
struct StudentInfo{
int age;
QString name;
QString description;
StudentInfo(){
};
StudentInfo(int age, QString name, QString desc){
this->age = age;
this->name = name;
this->description = desc;
}
};
Q_DECLARE_METATYPE(StudentInfo)
struct TeacherInfo{
int age;
QString name;
QString description;
TeacherInfo(){
};
TeacherInfo(int age, QString name, QString desc){
this->age = age;
this->name = name;
this->description = desc;
}
};
Q_DECLARE_METATYPE(TeacherInfo)
template <typename T>
QVariant getdata(T t){
QVariant data;
data.setValue(t);
return data;
}
class Widget : public QWidget, public Observer
{
Q_OBJECT
public:
Widget(QWidget *parent = nullptr);
~Widget();
void handleMessage(QVariant data) override;
private:
Ui::Widget *ui;
};
#endif // WIDGET_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/YuyangHou/MessageManager.git
git@gitee.com:YuyangHou/MessageManager.git
YuyangHou
MessageManager
MessageManager
main

搜索帮助