rtiddsgen java parent class members

2 posts / 0 new
Last post
Offline
Last seen: 8 years 2 months ago
Joined: 02/05/2016
Posts: 1
How to generate a constructor that takes into account class hierarchy?

Hello,

Let say I have 2 IDL files, one for each struct:

module myModule {
   struct Parent {
      long a;
   }
}
module myModule {
   struct Child : Parent {
      double b;
   }
}

rtiddsgen will generate a few java files for both IDLs. I would like to generate a constructor that looks like this:

Subscribe to RSS - rtiddsgen java parent class members