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-04-28 16:01:22 -05:00

14 lines
188 B
C++

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