summaryrefslogtreecommitdiff
path: root/src/eNetworkPumpThread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/eNetworkPumpThread.h')
-rw-r--r--src/eNetworkPumpThread.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/eNetworkPumpThread.h b/src/eNetworkPumpThread.h
new file mode 100644
index 0000000..892c161
--- /dev/null
+++ b/src/eNetworkPumpThread.h
@@ -0,0 +1,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_ */