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

« back to all changes in this revision

Viewing changes to .pc/0001-License-Declaration.patch/src/include/FT817.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 FT817_H
2
 
#define FT817_H
3
 
 
4
 
#include "rigbase.h"
5
 
 
6
 
class RIG_FT817 : public rigbase {
7
 
public:
8
 
        RIG_FT817();
9
 
        ~RIG_FT817(){};
10
 
 
11
 
        long get_vfoA();
12
 
        void set_vfoA(long);
13
 
        void set_PTT_control(int val);
14
 
        void set_modeA(int val);
15
 
        int  get_modeA();
16
 
        int  get_modetype(int n);
17
 
        int  get_power_out(void);
18
 
        int  get_smeter(void);
19
 
 
20
 
        int  adjust_bandwidth(int m) { return 0;}
21
 
 
22
 
private:
23
 
        void init_cmd();
24
 
};
25
 
 
26
 
#endif