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

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

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

#endif