This repository has been archived on 2021-01-14. You can view files and clone it, but cannot push or open issues or pull requests.
Passgen/conmenu.h

34 lines
535 B
C++

#ifndef CONMENU_H
#define CONMENU_H
#include "pcore.h"
#include <QDialog>
#include "login.h"
class QBoxLayout;
class QHBoxLayout;
//class login;
class conmenu : public QDialog
{
Q_OBJECT
public:
conmenu();
~conmenu();
/*PCore *core;
QHBoxLayout *cont;
QPushButton *sBut(QBoxLayout *bb, const QString &name);*/
private:
login *logcore;
protected:
PCore *core;
QHBoxLayout *cont;
QPushButton *sBut(QBoxLayout *bb, const QString &name);
private slots:
void sets();
};
#endif // CONMENU_H