~ubuntu-branches/ubuntu/wily/flrig/wily

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/src/include/DELTA-II.h

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-10-25 11:17:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20141025111710-n32skgya3l9u1brw
Tags: 1.3.17-1
* New upstream release (Closes: #761839)
* Debian Standards-Version: 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _TT535_H
2
 
#define _TT535_H
3
 
 
4
 
#include "ICbase.h"
5
 
 
6
 
class RIG_TT535 : public RIG_ICOM {
7
 
public:
8
 
        RIG_TT535();
9
 
        ~RIG_TT535(){}
10
 
 
11
 
        long get_vfoA();
12
 
        void set_vfoA(long);
13
 
        long get_vfoB();
14
 
        void set_vfoB(long);
15
 
//      void set_PTT_control(int val);
16
 
        void set_modeA(int val);
17
 
        int  get_modeA();
18
 
        void set_modeB(int val);
19
 
        int  get_modeB();
20
 
        int  get_modetype(int n);
21
 
 
22
 
        int  adjust_bandwidth(int m);
23
 
};
24
 
 
25
 
#endif