I need make a class, let's say FineStack, who should declare a structure able to manage different kind of Fines ( LightFine, SeriousFine ). The superclass for both is Fine.
The question is, do I really need templates? I thought it was not necessary, so this is what I thought:
-> declare Fine *fines; ( kind-of array of fines? ) And ... creating an array of Fine's objects (the superclass), it should be able to manage both LightFine and SeriousFine objects.
-> The problem is. How should I declare it? Fine should be an abstract class, so no instances could be created (instances should be either LightFine's or SeriousFine's ).
I got stuck with this, since I don't find the way to get it. I've read in multiple questions here in Stackoverflow, that you guys usually suggest to use std::vector , which makes you easier to manage this kind of stuff.
Should I go in that way and forget about the original idea?
I need a structure which should be able to handle any object from both subclasses, in any order (let's say .. 3 LightFine and 2 SeriousFine ... or alternatively each other from the start to the end of the structure ... whatever.