PictureCrypt  1.4.1
An image-steganography project
aboutpc.h
Go to the documentation of this file.
1 #ifndef ABOUTPC_H
2 #define ABOUTPC_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
7 class AboutPC;
8 }
12 class AboutPC : public QDialog
13 {
14  Q_OBJECT
15 
16 public:
17  explicit AboutPC(QWidget *parent = 0);
18  ~AboutPC();
19  void setVersion(QString version);
20 
21 private:
22  Ui::AboutPC *ui;
23 };
24 
25 #endif // ABOUTPC_H
Definition: aboutpc.h:6
The AboutPC class The About Page dialog.
Definition: aboutpc.h:12