I'm new in C++; here is my problem.
DataInterface is a struct defined.
I would like to create Datainterface_1, Datainterface_2, Datainterface_3 as an instance of existing DataInterface. How to do that.
I wrote the following :
for (int i = 0; i < 3; ++i)
{
DataInterface* Datainterface_$i = .....;
}
It doesn't work. Any ideas?