source: comparacioncriptosistemas/interfaz/Criptosistema_Interfaz/dialog.h @ c7b52e9

interfaz
Last change on this file since c7b52e9 was c7b52e9, checked in by lhernandez <lhernandez@…>, 8 years ago

Se realizo el prototipo no funcional adaptado a la aplicacion de escritorio, preparada para enlazar a las funcionalidades de los criptosistemas

  • Property mode set to 100644
File size: 336 bytes
Line 
1#ifndef DIALOG_H
2#define DIALOG_H
3
4#include <QDialog>
5
6namespace Ui {
7class Dialog;
8}
9
10class Dialog : public QDialog
11{
12    Q_OBJECT
13
14public:
15    explicit Dialog(QWidget *parent = 0);
16    ~Dialog();
17    Ui::Dialog *ui;
18
19private:
20
21private slots:
22    void GenerarClaves();
23    bool identicalFiles(QString,QString);
24
25};
26
27#endif // DIALOG_H
Note: See TracBrowser for help on using the repository browser.