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

« back to all changes in this revision

Viewing changes to kdetv/plugins/filter/bilinear/bilinear.h

  • 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
// -*- c++ -*-
 
2
/***************************************************************************
 
3
                           bilinear.h
 
4
                           ----------
 
5
    begin                : Mon Jun 14 2004
 
6
    copyright            : (C) 2004 by Dirk Ziegelmeier
 
7
    email                : dziegel@gmx.de
 
8
 ***************************************************************************/
 
9
 
 
10
/*
 
11
 * Taken from xawtv.
 
12
 *
 
13
 * Original authors:
 
14
 * Conrad Kreyling <conrad@conrad.nerdland.org>
 
15
 * Patrick Barrett <yebyen@nerdland.org>
 
16
 *
 
17
 *   This program is free software; you can redistribute it and/or modify
 
18
 *   it under the terms of the GNU General Public License as published by
 
19
 *   the Free Software Foundation; either version 2 of the License, or
 
20
 *   (at your option) any later version.
 
21
 */
 
22
 
 
23
#ifndef BILINEAR_H
 
24
#define BILINEAR_H
 
25
 
 
26
#include <kdetvfilterplugin.h>
 
27
 
 
28
class BilinearPlugin : public KdetvFilterPlugin
 
29
{
 
30
    Q_OBJECT
 
31
 
 
32
 
 
33
public:
 
34
    BilinearPlugin(Kdetv* ktv, const QString& cfgkey, QObject* parent = 0, const char* name=0);
 
35
    virtual ~BilinearPlugin();
 
36
};
 
37
 
 
38
#endif // BILINEAR_H