mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Allow to overload drop_references()
This is useful in cases where an object owns child objects which in turn hold a reference to the parent. In this case PluginInsert has-a Plugin, which may have a reference to the insert or the Route.
This commit is contained in:
parent
bfccf7ba18
commit
c2618903ae
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ class LIBPBD_API Destructible {
|
|||
PBD::Signal0<void> Destroyed;
|
||||
PBD::Signal0<void> DropReferences;
|
||||
|
||||
void drop_references () { DropReferences(); }
|
||||
virtual void drop_references () { DropReferences(); }
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue