13
0
git-svn-id: svn://localhost/ardour2/trunk@831 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-08-16 14:07:58 +00:00
parent 1ae0948138
commit 3ea92ec324

View File

@ -0,0 +1,20 @@
#ifndef __pbd_destructible_h__
#define __pbd_destructible_h__
#include <sigc++/signal.h>
namespace PBD {
class Destructible {
public:
Destructible() {}
virtual ~Destructible () {}
sigc::signal<void> GoingAway;
void drop_references () const { GoingAway(); }
};
}
#endif /* __pbd_destructible_h__ */