aboutsummaryrefslogtreecommitdiff
path: root/include/connection.h
blob: 5ae90d5bf834f1a202eca708fe3ed9d01f12f63a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __connection_h
#define __connection_h

#include <libsig_comp.h>
#include <lib/base/object.h>

class eConnection: public iObject, public Connection
{
DECLARE_REF;
private:
	ePtr<iObject> m_owner;
public:
	eConnection(iObject *owner, const Connection &conn): Connection(conn), m_owner(owner) { };
	virtual ~eConnection() { disconnect(); }
};

#endif