I am trying to create a class that creates and destroys flowitems, my first approach would be making a class that inherits from Source and Sink, and call their methods based on the input/output nodes values.
But I am getting a compiler error on the return new Class on the createodtderivative method, because it has ambiguous base class ObjectDataType.
Is it possible to use Multiple Inheritance in Module Development?
If no, would the best solution be creating a custom Fixed Resource from scratch with both Source and Sink functionalities?
Thanks!