mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-09 17:22:39 +00:00
17 lines
147 B
C++
17 lines
147 B
C++
#include <QDebug>
|
|
#include <QFile>
|
|
|
|
#include "pass.h"
|
|
|
|
|
|
Pass::Pass() {
|
|
|
|
}
|
|
|
|
void Pass::speak() {
|
|
qDebug() << "Starting app from main.cpp";
|
|
}
|
|
|
|
|
|
|