Re:Creating a class from a given class type
"Steffen Liersch" <
XXXX@XXXXX.COM >wrote in message
Quote
How can I create a class from a given class type in C++Builder?
What you ask for is not doable with C++ code. The C++ language does not
support creating classes based on meta data like the Delphi Pascal language
supports. To do what you ask, you will have to continue using Pascal code.
Fortunately, BCB includes a Pascal compiler, so you can include .PAS units
into your C++ projects.
Gambit