UTPassMirror/plugins/Pass/pass.cpp

20 lines
283 B
C++
Raw Normal View History

2019-03-13 18:38:12 +00:00
#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() {
}