podcatcher_qt/src/podcatcherwin.cpp
branchpodcatcher_qt_symbian4
changeset 216 1f5e22508b46
child 235 f0b8582ef9ac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/podcatcher_qt/src/podcatcherwin.cpp	Mon Aug 23 06:14:01 2010 +0200
@@ -0,0 +1,14 @@
+#include "podcatcherwin.h"
+#include "ui_podcatcherwin.h"
+
+PodcatcherWin::PodcatcherWin(QWidget *parent) :
+    QMainWindow(parent),
+    ui(new Ui::PodcatcherWin)
+{
+    ui->setupUi(this);
+}
+
+PodcatcherWin::~PodcatcherWin()
+{
+    delete ui;
+}