the class vector is not exportable via windows dll, so i am looking for a replacement... if you can provide a link to a library with the same api (different namespace is ok) it would be awesome :)
What you mean exportable ? You need to give it a type so that it can be compiled into the dll, not sure what you are trying to do but any other vector libraries will also be templated so it won't be "exportable" either.
> the class vector is not exportable via windows dll
Memory allocated in the dll must be deallocatable outside the dll and vice versa. A work around is to write a custom allocator that allocates and frees memory from the common process default heap.