<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Thanks a lot!<br><br>--- Bill Lorensen <i><bill.lorensen@gmail.com></i> schrieb am <b>Sa, 8.8.2009:<br></b><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"><b><br>Von: Bill Lorensen <bill.lorensen@gmail.com><br>Betreff: Re: [vtkusers] Creating an array of objects of a VTK-class<br>An: "Dmitri Danewitz" <d.danewitz@yahoo.de><br>CC: vtkusers@vtk.org<br>Datum: Samstag, 8. August 2009, 17:38<br><br></b><div class="plainMail"><b>You could use and std::vector<vtkRectilinearGridReader *> Reader;<br>for(int nr = 0; nr < number; nr++)<br> {<br> Reader.push_back(vtkRectilinearGridReader::New());<br> }<br><br>or you could use the older C-style with malloc<br><br><br>On Sat, Aug 8, 2009 at 12:57 PM, Dmitri Danewitz<<a ymailto="mailto:d.danewitz@yahoo.de"
href="/mc/compose?to=d.danewitz@yahoo.de">d.danewitz@yahoo.de</a>> wrote:<br>> Hello,<br>><br>> I'm trying to create multiple objects of the vtkRectilinearReader class. It<br>> works fine, if I do it like this:<br>><br>> const int number = 4;<br>> vtkRectilinearGridReader *Reader[number];<br>> for(int nr = 0; nr < number; nr++)<br>> {<br>> Reader[nr] = vtkRectilinearGridReader::New();<br>> }<br>><br>><br>> But when "number" is not a constant, this doesn't work. Is there a away to<br>> do this without having "number" to be a constant?<br>><br>> Thanks<br>> Dmitri<br>><br>> _______________________________________________<br>> Powered by www.kitware.com<br>><br>> Visit other Kitware open-source projects at<br>> <a href="http://www.kitware.com/opensource/opensource.html"
target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>><br>> Please keep messages on-topic and check the VTK FAQ at:<br>> <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>><br>> Follow this link to subscribe/unsubscribe:<br>> <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>><br>><br></b></div></blockquote></td></tr></table><br>