Skip to content

Instantly share code, notes, and snippets.

@scope2229
Created April 23, 2018 08:26
Show Gist options
  • Save scope2229/092143e17252172ea53704d782df37bf to your computer and use it in GitHub Desktop.
Save scope2229/092143e17252172ea53704d782df37bf to your computer and use it in GitHub Desktop.
#ifndef ADMINISTRATION_H
#define ADMINISTRATION_H
#include <QWidget>
#include "loginscreen.h"
namespace Ui {
class Administration;
}
class Administration : public QWidget
{
Q_OBJECT
public:
explicit Administration(QWidget *parent = 0);
~Administration();
private slots:
void on_logoutBTN_clicked();
private:
Ui::Administration *ui;
};
#endif // ADMINISTRATION_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment