Skip to content

Instantly share code, notes, and snippets.

@scope2229
Created April 23, 2018 08:28
Show Gist options
  • Save scope2229/bb2a1ec7c050e60c32b94b2da671eebe to your computer and use it in GitHub Desktop.
Save scope2229/bb2a1ec7c050e60c32b94b2da671eebe to your computer and use it in GitHub Desktop.
#include "administration.h"
#include "ui_administration.h"
Administration::Administration(QWidget *parent) :
QWidget(parent),
ui(new Ui::Administration)
{
ui->setupUi(this);
}
Administration::~Administration()
{
delete ui;
}
void Administration::on_logoutBTN_clicked()
{
this->close();
login = new loginScreen
login->show();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment