~ubuntu-branches/ubuntu/quantal/linpsk/quantal

« back to all changes in this revision

Viewing changes to linpsk/cdemodulator.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Bruce Walker
  • Date: 2002-02-06 11:43:38 UTC
  • Revision ID: james.westby@ubuntu.com-20020206114338-xqmjmhh01lpjm0g4
Tags: upstream-0.6.2
ImportĀ upstreamĀ versionĀ 0.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          cdemodulator.cpp  -  description
 
3
                             -------------------
 
4
    begin                : Sat Jun 2 2001
 
5
    copyright            : (C) 2001 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
 ***************************************************************************/
 
16
 
 
17
#include "cdemodulator.h"
 
18
 
 
19
CDemodulator::CDemodulator()
 
20
{
 
21
}
 
22
 
 
23
CDemodulator::~CDemodulator()
 
24
{
 
25
}
 
26
 
 
27
void CDemodulator::setAfc(bool afc) { UseAfc=afc; }
 
28
 
 
29
void CDemodulator::setRxFrequency(double freq)
 
30
{
 
31
RxFrequency = freq;
 
32
}
 
33
 
 
34
double CDemodulator::getRxFrequency(void)
 
35
{
 
36
return RxFrequency;
 
37
}