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