summaryrefslogtreecommitdiff
path: root/src/simplertp.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-09-19 15:38:46 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-09-19 15:38:46 +0200
commit6510bdf84dbe772bbcf7eeef1dd5b2f67512573b (patch)
treef4c9f63ae2a450c6b0f45272be7272443999db83 /src/simplertp.cc
parentc9cb81aac55962bd6da36e0e4e23eb9061901a80 (diff)
Some experimental V4L code...
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();
+}