This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PasswordEncryption/main.cpp
T
2017-03-23 12:17:58 -05:00

15 lines
235 B
C++

#include <iostream>
#include <QApplication>
#include "messagingcontrols.h"
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
messagingcontrols* stuff = new messagingcontrols;;
stuff->show();
return app.exec();
}