forked from 7h0ma5/QLog
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathRigCaps.cpp
34 lines (32 loc) · 977 Bytes
/
RigCaps.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "RigCaps.h"
RigCaps::RigCaps(bool canGetFreq,
bool canGetMode,
bool canGetVFO,
bool canGetPWR,
bool canGetRIT,
bool canGetXIT,
bool canGetPTT,
bool canGetKeySpeed,
bool canSendMorse,
bool isNetworkOnly,
bool needPolling,
bool canProcessDXSpot,
int serial_data_bits,
int serial_stop_bits
) :
canGetFreq(canGetFreq),
canGetMode(canGetMode),
canGetVFO(canGetVFO),
canGetPWR(canGetPWR),
canGetRIT(canGetRIT),
canGetXIT(canGetXIT),
canGetPTT(canGetPTT),
canGetKeySpeed(canGetKeySpeed),
canSendMorse(canSendMorse),
serialDataBits(serial_data_bits),
serialStopBits(serial_stop_bits),
isNetworkOnly(isNetworkOnly),
needPolling(needPolling),
canProcessDXSpot(canProcessDXSpot)
{
}