Stub 'clear()' method to allow System to clear circular references.

This commit is contained in:
Chris 2012-05-21 09:07:24 +01:00
parent 2e90c8a7a4
commit 26da047afd

View File

@ -64,6 +64,19 @@ sub new {
}
# ============================================================================
# Clean shutdown support
## @method void clear()
# A function callable by System to ensure that any circular references do not
# prevent object destruction.
sub clear {
my $self = shift;
# The method, it does nothing!
}
# ============================================================================
# Error functions