make Stateful a virtual base class of StatefulDestructible

This permits dual inheritance from Stateful.
This commit is contained in:
Paul Davis 2023-12-29 09:14:15 -07:00
parent cfb4ed5884
commit 44974c08ea
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@
namespace PBD {
/** Base class for objects with saveable and undoable state with destruction notification */
class LIBPBD_API StatefulDestructible : public Stateful, virtual public Destructible
class LIBPBD_API StatefulDestructible : virtual public Stateful, virtual public Destructible
{
};