22 lines
313 B
C
22 lines
313 B
C
|
#ifndef PASSWORD_H
|
||
|
#define PASSWORD_H
|
||
|
|
||
|
#include "mainwindow.h"
|
||
|
#include <qt5keychain/keychain.h>
|
||
|
#include <qt5keychain/qkeychain_export.h>
|
||
|
|
||
|
class password
|
||
|
{
|
||
|
password(QString);
|
||
|
|
||
|
~password();
|
||
|
|
||
|
void store(QString, QString);
|
||
|
|
||
|
QString read(QString);
|
||
|
|
||
|
bool remove(QString);
|
||
|
};
|
||
|
|
||
|
#endif // PASSWORD_H
|