12 lines
163 B
C++
12 lines
163 B
C++
|
#include "student.h"
|
||
|
|
||
|
Student::Student(QWidget *parent) : QWidget(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void Student::drink()
|
||
|
{
|
||
|
qDebug() << "请老师吃冷饮" << endl;
|
||
|
}
|