source: comparacioncriptosistemas/interfaz/ites.cpp

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

Realizada mejora de la interfaz(grid), agragada funcionalidad para la creacion de llaves (privada y publica) se guardar en un directorio kyes del proyecto, agragada funcionalidad para el cifrado de un texto plano (por ahora esta comentado, para realizar la interfaz) y agragada funcionalidad para descifrar el archivo a partir de un data.dat cifrado

  • Property mode set to 100644
File size: 839 bytes
Line 
1#include "ites.h"
2
3ites::ites(QObject *parent)
4    : QAbstractItemModel(parent)
5{
6}
7
8QVariant ites::headerData(int section, Qt::Orientation orientation, int role) const
9{
10    // FIXME: Implement me!
11}
12
13QModelIndex ites::index(int row, int column, const QModelIndex &parent) const
14{
15    // FIXME: Implement me!
16}
17
18QModelIndex ites::parent(const QModelIndex &index) const
19{
20    // FIXME: Implement me!
21}
22
23int ites::rowCount(const QModelIndex &parent) const
24{
25    if (!parent.isValid())
26        return 0;
27
28    // FIXME: Implement me!
29}
30
31int ites::columnCount(const QModelIndex &parent) const
32{
33    if (!parent.isValid())
34        return 0;
35
36    // FIXME: Implement me!
37}
38
39QVariant ites::data(const QModelIndex &index, int role) const
40{
41    if (!index.isValid())
42        return QVariant();
43
44    // FIXME: Implement me!
45    return QVariant();
46}
Note: See TracBrowser for help on using the repository browser.