mirror of
https://github.com/vgough/encfs.git
synced 2025-01-20 12:48:35 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
26 lines
302 B
C++
26 lines
302 B
C++
#ifndef ABOUT_H
|
|
#define ABOUT_H
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
namespace Ui {
|
|
class About;
|
|
}
|
|
|
|
class About : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit About(QWidget *parent = 0);
|
|
~About();
|
|
|
|
private slots:
|
|
void on_pushButton_clicked();
|
|
|
|
private:
|
|
Ui::About *ui;
|
|
};
|
|
|
|
#endif // ABOUT_H
|