mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
34 lines
507 B
C++
34 lines
507 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2010 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __DB_TOKEN_H
|
|
#define __DB_TOKEN_H
|
|
|
|
#include <QObject>
|
|
#include <QPixmap>
|
|
#include <QEvent>
|
|
|
|
#include "pkcs11_lib.h"
|
|
#include "db_base.h"
|
|
|
|
class db_token: public db_base
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
slotid slot;
|
|
public:
|
|
db_token(QString db, MainWindow *mw);
|
|
bool setData(const QModelIndex &index,
|
|
const QVariant &value, int role);
|
|
void setSlot(slotid s)
|
|
{
|
|
slot = s;
|
|
}
|
|
};
|
|
|
|
#endif
|