source: comparacioncriptosistemas/interfaz/Criptosistema_Interfaz/login.cpp @ 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: 381 bytes
Line 
1#include "login.h"
2
3
4#include <QDebug>
5#include "QMessageBox"
6
7login::login(QWidget *parent) :
8    QDialog(parent),
9    ui(new Ui::login)
10{
11
12    //ui->setupUi(this);
13    setWindowTitle("**** PRINCIPAL ****");
14    setWindowModified(true);
15
16
17}
18
19login::~login()
20{
21    delete ui;
22}
23
24
25void login::slotClickListVie()
26{
27
28    QMessageBox::information(this,"Titulo de Alerta","Alera" );
29}
30
Note: See TracBrowser for help on using the repository browser.