source: comparacioncriptosistemas/interfaz/Criptosistema_Interfaz/ites.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: 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.