We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow derived nodes to be created from multiple defined base nodes.
for example with these base nodes:
{ "name": "BaseNodeA", "isAbstract" : true, "properties": [ { "name": "prop-from-baseA-1", "type": "string" }, { "name": "prop-from-baseA-2", "type": "number" } ] }, { "name": "BaseNodeB", "isAbstract" : true, "properties": [ { "name": "prop-from-baseB-1", "type": "string" }, { "name": "prop-from-baseB-2", "type": "number" } ] }
and derived node:
{ "name": "DerivedNode", "base": ["BaseNodeA", "BaseNodeB"] }
would produce node:
{ "name": "DerivedNode", "properties": [ { "name": "prop-from-baseA-1", "type": "string" }, { "name": "prop-from-baseA-2", "type": "number" }, { "name": "prop-from-baseB-1", "type": "string" }, { "name": "prop-from-baseB-2", "type": "number" } ] }
The text was updated successfully, but these errors were encountered:
I'll submit a pull request
Sorry, something went wrong.
pruttned#8 multiple inheritance support
1a244bf
pruttned#8 multiple inheritance unit test
7124041
Thanks for your contribution. Its merged in 1.2.0
No branches or pull requests
Allow derived nodes to be created from multiple defined base nodes.
for example with these base nodes:
and derived node:
would produce node:
The text was updated successfully, but these errors were encountered: