Add LTE function for completeness and fix bug in LT
[satune.git] / src / Tuner / tunable.c
1 #include "tunable.h"
2
3 Tuner * allocTuner() {
4         return ourmalloc(sizeof(Tuner));
5 }
6
7 void deleteTuner(Tuner *This) {
8         ourfree(This);
9 }
10
11 int getTunable(Tuner *This, TunableParam param, TunableDesc * descriptor) {
12         return descriptor->defaultValue;
13 }
14 int getVarTunable(Tuner *This, VarType vartype, TunableParam param, TunableDesc * descriptor) {
15         return descriptor->defaultValue;
16 }