Re: Storing class objects dynamically in an array

2013-01-21 Thread Brian D
On Monday, January 21, 2013 8:29:50 PM UTC-6, MRAB wrote: > On 2013-01-22 01:56, Brian D wrote: > > > Hi, > > > > > > I'm trying to instantiate a class object repeated times, dynamically for as > > many times as are required, storing each class object in a container to > > later write out to a

Re: Storing class objects dynamically in an array

2013-01-21 Thread MRAB
On 2013-01-22 01:56, Brian D wrote: Hi, I'm trying to instantiate a class object repeated times, dynamically for as many times as are required, storing each class object in a container to later write out to a database. It kind of looks like what's needed is a two-dimensional class object, but

Re: Storing class objects dynamically in an array

2013-01-21 Thread Dave Angel
On 01/21/2013 08:56 PM, Brian D wrote: Hi, I'm trying to instantiate a class object repeated times, dynamically for as many times as are required, storing each class object in a container to later write out to a database. It kind of looks like what's needed is a two-dimensional class object,

Re: Storing class objects dynamically in an array

2013-01-21 Thread Dave Angel
On 01/21/2013 08:56 PM, Brian D wrote: Hi, I'm trying to instantiate a class object repeated times, dynamically for as many times as are required, storing each class object in a container to later write out to a database. It kind of looks like what's needed is a two-dimensional class object,