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

« back to all changes in this revision

Viewing changes to kdetv/plugins/filter/mirror/mirror.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
                           mirror.h
 
4
                           --------
 
5
    begin                : Sat Jul 31 2004
 
6
    copyright            : (C) 2004 by Dirk Ziegelmeier
 
7
    email                : dziegel@gmx.de
 
8
 ***************************************************************************/
 
9
 
 
10
/*
 
11
 * Mirror algorithm taken from DScaler.
 
12
 * Copyright (c) 2002 Rob Muller. All rights reserved.
 
13
 *
 
14
 * Ported by: Dirk Ziegelmeier
 
15
 *
 
16
 *   This program is free software; you can redistribute it and/or modify
 
17
 *   it under the terms of the GNU General Public License as published by
 
18
 *   the Free Software Foundation; either version 2 of the License, or
 
19
 *   (at your option) any later version.
 
20
 */
 
21
 
 
22
#ifndef MIRROR_H
 
23
#define MIRROR_H
 
24
 
 
25
#include <kdetvfilterplugin.h>
 
26
 
 
27
class MirrorPlugin : public KdetvFilterPlugin
 
28
{
 
29
    Q_OBJECT
 
30
 
 
31
 
 
32
public:
 
33
    MirrorPlugin(Kdetv* ktv, const QString& cfgkey, QObject* parent = 0, const char* name=0);
 
34
    virtual ~MirrorPlugin();
 
35
};
 
36
 
 
37
#endif // MIRROR_H