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

« back to all changes in this revision

Viewing changes to src/qpskmodulator.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
                          qpskmodulator.h  -  description
 
3
                             -------------------
 
4
    begin                : Don Feb 27 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 QPSKMODULATOR_H
 
19
#define QPSKMODULATOR_H
 
20
 
 
21
#include "pskmodulator.h"
 
22
class CTxBuffer;
 
23
/**
 
24
  *@author Volker Schroer
 
25
  */
 
26
 
 
27
class QPskModulator : public PSKModulator  {
 
28
public: 
 
29
        QPskModulator(int, double, CTxBuffer *);
 
30
        ~QPskModulator();
 
31
char GetNextSymbol(void);
 
32
private:
 
33
 
 
34
        unsigned short int m_TxCodeWord;
 
35
};
 
36
 
 
37
#endif