I came upon the following and figured I’d give it a try: https://docs.rocketsoftware.com/bundle/netexpress_ug_51wrappack1_html/page/opclap_15.htm#s016
As long as the ACTUAL-PARAMS compiler option is specified immediately before the template class (my term), you can build out the full class with the specified name and based on the specified class parameter. Specifically “$SET ACTUAL-PARAMS(ELinklist Employee)” will build the ELinklist class with Employee being the “parameter class”. Specifically, the parameter class “Element” in the source for PLinkList will be replaced with actual class Employee.
But what if I want a second one, say ALinklist with class Another as the parameter? If I put “$SET ACTUAL-PARAMS(ALinklist Another)” below the earlier ACTUAL-PARAMS it will create ALinklist, but ELinklist seems to be gone.
I can post my exact source code if necessary.
