~ubuntu-branches/ubuntu/feisty/kdetv/feisty

« back to all changes in this revision

Viewing changes to kdetv/libkdetv/kdetvvbiplugin.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-09-17 23:25:16 UTC
  • Revision ID: james.westby@ubuntu.com-20050917232516-9wdsn3ckagbqieh8
Tags: upstream-0.8.8
ImportĀ upstreamĀ versionĀ 0.8.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                           qvvbiplugin.cpp
 
3
                           ---------------
 
4
    begin                : Sun Sep 6 2003
 
5
    copyright            : (C) 2003 by Dirk Ziegelmeier
 
6
    email                : dziegel@gmx.de
 
7
 ***************************************************************************/
 
8
 
 
9
/*
 
10
 * This library is free software; you can redistribute it and/or
 
11
 * modify it under the terms of the GNU Library General Public
 
12
 * License as published by the Free Software Foundation; either
 
13
 * version 2 of the License, or (at your option) any later version.
 
14
 *
 
15
 * This library is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
18
 * Library General Public License for more details.
 
19
 *
 
20
 * You should have received a copy of the GNU Library General Public License
 
21
 * along with this library; see the file COPYING.LIB.  If not, write to
 
22
 * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
 
23
 * Boston, MA 02110-1301, USA.
 
24
 */
 
25
 
 
26
#include "kdetvvbiplugin.h"
 
27
 
 
28
KdetvVbiPlugin::KdetvVbiPlugin(Kdetv *ktv, const QString& cfgkey, QObject *o, const char* n)
 
29
    : KdetvPluginBase(ktv, cfgkey, o, n)
 
30
{
 
31
}
 
32
 
 
33
KdetvVbiPlugin::~KdetvVbiPlugin()
 
34
{
 
35
}
 
36
 
 
37
#include "kdetvvbiplugin.moc"
 
38