source: comparacioncriptosistemas/interfaz/Criptosistema_Interfaz/ites.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: 784 bytes
Line 
1#ifndef ITES_H
2#define ITES_H
3
4#include <QAbstractItemModel>
5
6class ites : public QAbstractItemModel
7{
8    Q_OBJECT
9
10public:
11    explicit ites(QObject *parent = 0);
12
13    // Header:
14    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
15
16    // Basic functionality:
17    QModelIndex index(int row, int column,
18                      const QModelIndex &parent = QModelIndex()) const override;
19    QModelIndex parent(const QModelIndex &index) const override;
20
21    int rowCount(const QModelIndex &parent = QModelIndex()) const override;
22    int columnCount(const QModelIndex &parent = QModelIndex()) const override;
23
24    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
25
26private:
27};
28
29#endif // ITES_H
Note: See TracBrowser for help on using the repository browser.