Limiting satune timeout
[satune.git] / src / Tuner / tunabledependent.cc
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.cc
9  * Author: hamed
10  *
11  * Created on October 5, 2018, 11:26 AM
12  */
13
14 #include "tunabledependent.h"
15
16 TunableDependent::TunableDependent(Tunables dependent, Tunables parent) :
17         dependent(dependent),
18         parent(parent)
19 {
20 }
21
22 TunableDependent::TunableDependent(TunableDependent &setting)
23 {
24         dependent = setting.dependent;
25         parent = setting.parent;
26 }
27
28 TunableDependent::~TunableDependent() {
29 }
30