[fpc-pascal] is there a way to list out all classes defined in a unit during run time?

2013-11-07 Thread Dennis Poon
in the initialization section of the unit. Is there a way to list out all classes defined in a unit during run time? Dennis ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] is there a way to list out all classes defined in a unit during run time?

2013-11-07 Thread Michael Van Canneyt
On Thu, 7 Nov 2013, Dennis Poon wrote: I have a unit which I will incrementally add new subclasses of TCommand. At run time, I want to get a list of subclasses of TCommand so that I can compare the where the user's required input (from network) matches the name of any TCommand. Currently,