mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-09 01:02:40 +00:00
20 lines
283 B
C++
20 lines
283 B
C++
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QString>
|
|
#include "pass.h"
|
|
|
|
Pass::Pass() {
|
|
|
|
}
|
|
|
|
void Pass::cmd_show(const QString path) {
|
|
QDir dir = QDir(path);
|
|
if (!dir.exists()) {
|
|
qWarning("Path to show not found");
|
|
return;
|
|
}
|
|
}
|
|
|
|
void Pass::cmd_version() {
|
|
|
|
} |