libdrmconf 0.13.3
A library to program DMR radios.
Loading...
Searching...
No Matches
transferflags.hh
1#ifndef TRANSFERFLAGS_HH
2#define TRANSFERFLAGS_HH
3
4
7{
8public:
13
15 bool blocking() const;
17 void setBlocking(bool enable);
18
20 bool updateDeviceClock() const;
22 void setUpdateDeviceClock(bool enable);
23
24protected:
29};
30
31
32#endif // TRANSFERFLAGS_HH
void setBlocking(bool enable)
Set if transfer is blocking.
Definition transferflags.cc:22
TransferFlags()
Default constructor.
Definition transferflags.cc:3
void setUpdateDeviceClock(bool enable)
Sets if the device clock gets updated during the transfer.
Definition transferflags.cc:33
bool _updateDeviceClock
If true, the device clock gets updated during the transfer.
Definition transferflags.hh:28
bool blocking() const
Returns true if the transfer is blocking.
Definition transferflags.cc:17
bool _blocking
If true, the transfer is blocking.
Definition transferflags.hh:26
bool updateDeviceClock() const
Returns true if the device clock gets updated during transfer.
Definition transferflags.cc:28