views:

66

answers:

1

Can c++ create array of pointers to different classes dynamically loaded from dll? ps.without headers with class definations

+1  A: 

I think you need to have an exported function that instantiates objects of the class. Then you can, of course, put these values into array.

Michael Krelin - hacker