Posted By:
Mark_Ayzenshtat
Posted On:
Monday, May 28, 2001 12:57 AM
Lets say I have a class with a bunch of member variables:
class Foo {
int a;
int b;
int c;
}
However, this class also contains some existing native data structure. How can I store the native member variables of many instances of this class without using the "class concept" of C++?