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

12 lines
163 B
C++
Executable File

#include "student.h"
Student::Student(QWidget *parent) : QWidget(parent)
{
}
void Student::drink()
{
qDebug() << "请老师吃冷饮" << endl;
}