summaryrefslogtreecommitdiff
path: root/src/eNetworkPumpThread.h
blob: 892c161f0000aa0473b2592434393ed1fbfb70ca (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
26
27
28
/*
 * eDemuxPumpThread.h
 *
 *  Created on: 2013. 9. 12.
 *      Author: kos
 */

#ifndef EDEMUXPUMPTHREAD_H_
#define EDEMUXPUMPTHREAD_H_

#include "uThread.h"
//-------------------------------------------------------------------------------

class eNetworkPumpThread : public uThread
{
private:
	int mDeviceFd;
	bool mTermFlag;
protected:
	void Run();
	void Terminate();
public:
	eNetworkPumpThread(int aDeviceFd);
	virtual ~eNetworkPumpThread();
};
//-------------------------------------------------------------------------------

#endif /* EDEMUXPUMPTHREAD_H_ */