add ignore files.
[vuplus_transtreamproxy] / src / eNetworkPumpThread.h
1 /*
2  * eDemuxPumpThread.h
3  *
4  *  Created on: 2013. 9. 12.
5  *      Author: kos
6  */
7
8 #ifndef EDEMUXPUMPTHREAD_H_
9 #define EDEMUXPUMPTHREAD_H_
10
11 #include "uThread.h"
12 //-------------------------------------------------------------------------------
13
14 class eNetworkPumpThread : public uThread
15 {
16 private:
17         int mDeviceFd;
18         bool mTermFlag;
19 protected:
20         void Run();
21         void Terminate();
22 public:
23         eNetworkPumpThread(int aDeviceFd);
24         virtual ~eNetworkPumpThread();
25 };
26 //-------------------------------------------------------------------------------
27
28 #endif /* EDEMUXPUMPTHREAD_H_ */