is that possible to write nested msg in one file?
hi, as the below example:
Child.msg
:
float32 x float32 y
Parent.msg
:
Child[2] child
is that possible to use only one .msg
file to implement?
thanks
I don't know the definitive answer if its possible, but I've never seen such a thing done and would be exceptionally unusual. Its best not. But you could consult the idl generators if its even feasibly possible, but I doubt that it is.
well, thanks for the comment, it is indeed some kind of "idle curiosity", but somehow i just dont want to create too many
msg
files only use once, as exampled, if theChild.msg
is only used byParent.msg
, it looks a little bit of wasting of managing/orginazing files...anyway, thanks for the comfirmation (negative comfirmation is also quit help for me)