Hi,
I want to create an array of pointers to sc_fifo <unsigned int> (I get the size of each fifo during the simulation).
I tried to write:
sc_vector < sc_fifo <unsigned int> *> FIFOS;
in the ctor: FIFOS.init(5);
and in another function make a dynamic memory allocation to each sc_fifo in the vector,
but it did not work, how can I write this?
Thanks