podcatcher_qt/src/podcatcherwin.cpp
author mapo
Wed, 13 Oct 2010 12:18:28 +0200
branchpodcatcher_qt_symbian4
changeset 225 49b434b3a0b2
parent 216 1f5e22508b46
child 235 f0b8582ef9ac
permissions -rw-r--r--
Moved pro files to make folder. Added pro file with TEMLPATE=subdirs which builds both projects. // MAPOG

#include "podcatcherwin.h"
#include "ui_podcatcherwin.h"

PodcatcherWin::PodcatcherWin(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::PodcatcherWin)
{
    ui->setupUi(this);
}

PodcatcherWin::~PodcatcherWin()
{
    delete ui;
}