BUG FIX when there is no usedSettings
[satune.git] / src / Tuner / tunabledependent.h
1 /*
2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6
7 /*
8  * File:   TunableDependent.h
9  * Author: hamed
10  *
11  * Created on October 5, 2018, 11:26 AM
12  */
13
14 #ifndef TUNABLEDEPENDENT_H
15 #define TUNABLEDEPENDENT_H
16
17 #include "tunable.h"
18
19 class TunableDependent {
20 public:
21         TunableDependent(Tunables dependent, Tunables parent = (Tunables) - 1);
22         TunableDependent(TunableDependent &setting);
23         virtual ~TunableDependent();
24         Tunables dependent;
25         Tunables parent;
26 };
27
28 #endif/* TUNABLEDEPENDENT_H */
29