mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2025-07-06 11:45:15 -04:00
10 lines
156 B
C++
10 lines
156 B
C++
#include "SDRThreadTask.h"
|
|
|
|
void SDRThreadTask::setUInt(unsigned int i) {
|
|
arg_int = i;
|
|
}
|
|
|
|
unsigned int SDRThreadTask::getUInt() {
|
|
return arg_int;
|
|
}
|