The answer may depend on the lifetime patterns for these objects. If the objects are all instantiated as you proceed, and then all removed in one feel fell swoop, it may make sense to create a very simple heap manager that allocates memory by simply incrementing a pointer. Then, when you're done, blow away the entire heap.
Raymond Chen made an interesting post that may help to inspire you. :)
