mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-10 17:38:47 +00:00
18 lines
146 B
C++
18 lines
146 B
C++
#include <QDebug>
|
|
#include <QFile>
|
|
|
|
#include "pass.h"
|
|
|
|
Pass::Pass()
|
|
{
|
|
|
|
}
|
|
|
|
void Pass::speak()
|
|
{
|
|
qDebug() << "Starting app from main.cpp";
|
|
}
|
|
|
|
|
|
|