summaryrefslogtreecommitdiffstats
path: root/Master/Real-Time Systems/RTS_A8/src/Fahren.h
blob: 987f4f774f554278a47fffd51f35cf8cf711d11c (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
25
/*
 * Fahren.h
 *
 *  Created on: 30.11.2010
 *      Author: istsveise
 */

#ifndef FAHREN_H_
#define FAHREN_H_

#include "Task.h"

extern pthread_mutex_t vehicleMutex;

class Fahren : public Task {
public:
	Fahren(int,int,int);
	virtual ~Fahren();
	virtual void execute();
private:
	int V;
	int D;
};

#endif /* FAHREN_H_ */