summaryrefslogtreecommitdiff
path: root/src/simplertp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/simplertp.cc')
-rw-r--r--src/simplertp.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/simplertp.cc b/src/simplertp.cc
index 7d61579..6cff1ff 100644
--- a/src/simplertp.cc
+++ b/src/simplertp.cc
@@ -24,5 +24,16 @@
* along with SimpleRTP; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
+#include <QApplication>
+#include "mainwindow.h"
+int main(int argc, char *argv[])
+{
+ QApplication app(argc, argv);
+
+ MainWindow wnd;
+ wnd.show();
+
+ return app.exec();
+}