#include "personal-account.h" #include "ui_personal-account.h" PersonalAccount::PersonalAccount(QWidget *parent) : QWidget(parent) , ui(new Ui::PersonalAccount) { ui->setupUi(this); } PersonalAccount::~PersonalAccount() { delete ui; }