xca/lib/db_token.h
Christian Hohnstaedt e5541c6d67 SF. Bug. #81 Make xca qt5 compatible
Extend XCA to also compile against Qt5
Remove directory from Qt includes
2015-09-17 18:42:42 +02:00

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