summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/include/ControlLoader.h
blob: 09ffacfdc289b161b0e3b270840a535b860a18aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * ControlLoader.h
 *
 *  Created on: Oct 25, 2011
 *      Author: christian
 */

#ifndef CONTROLLOADER_H_
#define CONTROLLOADER_H_

#include "control/ControlSendInterface.h"

using namespace am;

class ControlLoader {
public:
	ControlLoader();
	virtual ~ControlLoader();
	ControlSendInterface* returnControl();
private:
	ControlSendInterface* mControler;
};

#endif /* CONTROLLOADER_H_ */