Creating a metaclass that inherits from ABCMeta and QObject
I am building an app in PySide6 that will involve dynamic loading of plugins. To facilitate this, I am using ABCMeta
to define a custom class for the plugin interface, and I would like this custom class to inherit from ABC
and from QObject
so that I can abstract as much of the behavior as possible, including things like standard signals and slots that will be common to all subclasses.