qfedu-basic-level/day11/qtdemo1/student.cpp

12 lines
163 B
C++
Raw Normal View History

2023-06-27 15:43:16 +08:00
#include "student.h"
Student::Student(QWidget *parent) : QWidget(parent)
{
}
void Student::drink()
{
qDebug() << "请老师吃冷饮" << endl;
}