source: comparacioncriptosistemas/interfaz/Criptosistema_Interfaz/sistema.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: 327 bytes
Line 
1#ifndef SISTEMA_H
2#define SISTEMA_H
3
4#include <QMainWindow>
5#include "dialog.h"
6
7namespace Ui {
8class Sistema;
9}
10
11class Sistema : public QMainWindow
12{
13    Q_OBJECT
14
15public:
16    explicit Sistema(QWidget *parent = 0);
17    ~Sistema();
18    Ui::Sistema *ui;
19
20private:
21
22private slots:
23    void Autenticate();
24};
25
26#endif // SISTEMA_H
Note: See TracBrowser for help on using the repository browser.