Is it on the roadmap to support inline CPP inside of Solaris?
I am using HOM extensively, and would love to have access to C++ in Solaris without building plugins, due to complex build dependencies.
Cheers,
Aaron.
node = hou.pwd()
import inlinecpp
inlinecpp.extendClass(hou.LopNode, "inlinecppTest",
function_sources = [
"""
int layerCount(LOP_Node *node)
{
return node->layerCount();
}
"""
]
)
print node.layerCount()