Is there an equivalent of using C# interfaces on the iSeries using DDS. For example, let's say I have this...
Person
------
name
address
Teacher : Person
-------
school
Policewoman : Person
-----------
weapon
... where a teacher and policewoman both are persons, but have additional fields...
In C# you would declare Person and then both Teacher and Policewoman would implement person as an interface.
How would I do this in DDS on the iSeries? I'm looking for something I can stick into the DDS for the Teacher and Policewoman files that would point to the Person file and know that name and address are fields of Teacher and Policewoman.
Thanks in advance.