mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-13 19:12:40 +00:00
21 lines
444 B
C++
21 lines
444 B
C++
#include <QDebug>
|
|
#include <QFile>
|
|
#include <QtCore/QStandardPaths>
|
|
#include <QtCore/QDir>
|
|
|
|
#include "pass.h"
|
|
|
|
Pass::Pass(){
|
|
pass_store = QStandardPaths::writableLocation(
|
|
QStandardPaths::AppDataLocation).append("/.password-store");
|
|
QDir dir(pass_store);
|
|
if (!dir.exists())
|
|
dir.mkpath(".");
|
|
qDebug() << "Password Store is :" << pass_store;
|
|
}
|
|
|
|
void Pass::speak()
|
|
{
|
|
qDebug() << "Starting app from main.cpp";
|
|
}
|