You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
llj_gitpractice/src/car/car/first.cpp

15 lines
184 B

#include "first.h"
#include "ui_first.h"
first::first(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::first)
{
ui->setupUi(this);
}
first::~first()
{
delete ui;
}