~ubuntu-branches/debian/sid/linpsk/sid

« back to all changes in this revision

Viewing changes to src/interleaver.h

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2005-04-10 18:17:27 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050410181727-3l9dnfg0sp7bhk13
Tags: 0.8.1-1
* New upstream release 0.8.1
  * Modified upstream configure.in to support FHS-compliant Qt
    installation! (ie /usr/include/qt3, not /usr/lib/qt3/include) :-(
  * Re-autotools with autoconf2.59 and automake-1.9
* linpsk is no longer a Debian-native package (dsc/tar.gz)
* Now maintained by the debian-hams group
* Switch to debhelper 4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          interleaver.h  -  description
 
3
                             -------------------
 
4
    begin                : Sam M�r 1 2003
 
5
    copyright            : (C) 2003 by Volker Schroer
 
6
    email                : dl1ksv@gmx.de
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *   The PSK part is based on WinPSK 1.0 by Moe Wheatley, AE4JY            *              
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef INTERLEAVER_H
 
19
#define INTERLEAVER_H
 
20
 
 
21
 
 
22
/**
 
23
  *@author Volker Schroer
 
24
  */
 
25
 
 
26
class Interleaver {
 
27
public: 
 
28
        Interleaver();
 
29
        ~Interleaver();
 
30
int interleave(int);
 
31
private:
 
32
        int pipe0;
 
33
        int pipe1;
 
34
        int pipe2;
 
35
        int pipe3;
 
36
 
 
37
};
 
38
 
 
39
#endif