import of enigma2
[vuplus_dvbapp] / include / connection.h
1 #ifndef __connection_h
2 #define __connection_h
3
4 #include <libsig_comp.h>
5 #include <lib/base/object.h>
6
7 class eConnection: public virtual iObject, public Connection
8 {
9         int ref;
10 public:
11 DEFINE_REF(eConnection);
12 public:
13         eConnection(const Connection &conn): Connection(conn), ref(0) { };
14         virtual ~eConnection() { disconnect(); }
15 };
16
17 #endif